CenterTabView.xaml 897 B

12345678910111213141516171819202122
  1. <UserControl x:Class="Aitex.Core.UI.View.Frame.CenterTabView"
  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. mc:Ignorable="d"
  7. d:DesignHeight="700" d:DesignWidth="1600" >
  8. <Grid>
  9. <Grid.ColumnDefinitions>
  10. <ColumnDefinition Width="0" />
  11. <ColumnDefinition Width="1000*" />
  12. <ColumnDefinition Width="0" />
  13. </Grid.ColumnDefinitions>
  14. <TabControl
  15. Padding="0,0,0,0"
  16. x:Name="TabContainer"
  17. Grid.Column="1"
  18. BorderThickness="0">
  19. </TabControl>
  20. </Grid>
  21. </UserControl>