MainWindow.xaml 1.1 KB

12345678910111213141516171819202122
  1. <Window x:Class="AlarmInfoServerSim.Views.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:AlarmInfoServerSim.Views"
  7. xmlns:prism="http://prismlibrary.com/"
  8. prism:ViewModelLocator.AutoWireViewModel="True"
  9. Title="Alarm Information Service" Height="680" Width="620" ResizeMode="CanMinimize"
  10. mc:Ignorable="d">
  11. <Grid>
  12. <Grid.RowDefinitions>
  13. <RowDefinition Height="50"/>
  14. <RowDefinition Height="350"/>
  15. <RowDefinition Height="230"/>
  16. </Grid.RowDefinitions>
  17. <local:StatusBar Grid.Row="0" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  18. <local:WorkArea Grid.Row="1" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  19. <local:LogBar Grid.Row="2" HorizontalAlignment="Center" VerticalAlignment="Center" />
  20. </Grid>
  21. </Window>