ShellView.xaml 1.2 KB

123456789101112131415161718192021222324252627
  1. <wnd:CustomWnd x:Class="Venus_UI.Views.ShellView"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:wnd="http://OpenSEMI.Ctrlib.com/presentation"
  7. WindowState="Maximized"
  8. WindowStartupLocation="CenterScreen"
  9. xmlns:prism="http://prismlibrary.com/"
  10. mc:Ignorable="d"
  11. Title="JetPlasma" Height="450" Width="800" Loaded="CustomWnd_Loaded">
  12. <Grid>
  13. <Grid.RowDefinitions>
  14. <RowDefinition Height="100"/>
  15. <RowDefinition/>
  16. <RowDefinition Height="60"/>
  17. </Grid.RowDefinitions>
  18. <ContentControl x:Name="Top_Frame" Grid.Row="0" prism:RegionManager.RegionName="TopRegion"/>
  19. <ContentControl x:Name="Main_Frame" Grid.Row="1" prism:RegionManager.RegionName="MainRegion" />
  20. <StackPanel x:Name="Bottom_Frame" Grid.Row="2" Background="{DynamicResource BottomFrame_BG}" Orientation="Horizontal"/>
  21. </Grid>
  22. </wnd:CustomWnd>