123456789101112131415161718192021 |
- <UserControl x:Class="Vcloud.Licensing.AdminTool.Views.IssueLicenseView"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:views1="clr-namespace:Vcloud.Licensing.AdminTool.Views"
- mc:Ignorable="d"
- Background="#FFEEEEF2"
- d:DesignHeight="300" d:DesignWidth="300"
- Width="550" Height="300">
-
- <Grid >
- <TabControl Margin="5" SelectedIndex="0" Style="{StaticResource BaseTabControl}" >
- <TabControl.Items>
- <TabItem Header="CurrentLicense Info" Width="120" HorizontalContentAlignment="Center" Foreground="Black">
- <views1:LicenseInfoView x:Name="InfoView"/>
- </TabItem>
- </TabControl.Items>
- </TabControl>
- </Grid>
- </UserControl>
|