IssueLicenseView.xaml 1.0 KB

123456789101112131415161718192021
  1. <UserControl x:Class="Vcloud.Licensing.AdminTool.Views.IssueLicenseView"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:views1="clr-namespace:Vcloud.Licensing.AdminTool.Views"
  7. mc:Ignorable="d"
  8. Background="#FFEEEEF2"
  9. d:DesignHeight="300" d:DesignWidth="300"
  10. Width="550" Height="300">
  11. <Grid >
  12. <TabControl Margin="5" SelectedIndex="0" Style="{StaticResource BaseTabControl}" >
  13. <TabControl.Items>
  14. <TabItem Header="CurrentLicense Info" Width="120" HorizontalContentAlignment="Center" Foreground="Black">
  15. <views1:LicenseInfoView x:Name="InfoView"/>
  16. </TabItem>
  17. </TabControl.Items>
  18. </TabControl>
  19. </Grid>
  20. </UserControl>