StandardFrameWindow.xaml 1.2 KB

12345678910111213141516171819202122232425
  1. <Window x:Class="Aitex.Core.UI.View.Frame.StandardFrameWindow"
  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="980" d:DesignWidth="1920"
  8. ShowInTaskbar="True"
  9. WindowState="Maximized">
  10. <Viewbox Stretch="Fill" >
  11. <Border BorderBrush="Gray" BorderThickness="1" Margin="1" CornerRadius="4" Padding="1" >
  12. <Grid x:Name="CenterGrid" Width="1920" Height="1020">
  13. <Grid.RowDefinitions>
  14. <RowDefinition x:Name="TopRow" Height="60" />
  15. <RowDefinition x:Name="CenterRow" Height="890" />
  16. <RowDefinition x:Name="BottomRow" Height="70" />
  17. </Grid.RowDefinitions>
  18. <Grid Grid.Row="0" x:Name="TopPanel" ></Grid>
  19. <Grid Grid.Row="1" x:Name="CenterPanel" ></Grid>
  20. <Grid Grid.Row="2" x:Name="BottomPanel" ></Grid>
  21. </Grid>
  22. </Border>
  23. </Viewbox>
  24. </Window>