MainWindow.xaml 1.2 KB

1234567891011121314151617181920212223242526
  1. <Window x:Class="NEIntelligentControl2.MainWindow"
  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:local="clr-namespace:NEIntelligentControl2"
  7. xmlns:mw="clr-namespace:NEIntelligentControl2.Views.MainWindow"
  8. xmlns:am="clr-namespace:NEIntelligentControl2.Views.Alarm"
  9. mc:Ignorable="d"
  10. Title="新能源智能发电集中控制系统" Height="1080" Width="1920" WindowState="Maximized" WindowStyle="None">
  11. <Grid>
  12. <Grid.RowDefinitions>
  13. <RowDefinition Height="17*"/>
  14. <RowDefinition Height="244*"/>
  15. <RowDefinition Height="9*"/>
  16. </Grid.RowDefinitions>
  17. <Frame x:Name="_FrameMain" Grid.Row="1" Grid.Column="1" NavigationUIVisibility="Hidden"/>
  18. <mw:TitleBar x:Name="_TBMain"/>
  19. <mw:StatusBar x:Name="_SBMain" Grid.Row="2" ItemClick="StatusBar_ItemClick"/>
  20. <am:AlarmShowView Grid.Row="1" HorizontalAlignment="Right" VerticalAlignment="Bottom" Visibility="Collapsed"/>
  21. </Grid>
  22. </Window>