12345678910111213141516171819202122 |
- <Window x:Class="AlarmInfoServerSim.Views.MainWindow"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:local="clr-namespace:AlarmInfoServerSim.Views"
- xmlns:prism="http://prismlibrary.com/"
- prism:ViewModelLocator.AutoWireViewModel="True"
- Title="Alarm Information Service" Height="680" Width="620" ResizeMode="CanMinimize"
- mc:Ignorable="d">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="50"/>
- <RowDefinition Height="350"/>
- <RowDefinition Height="230"/>
- </Grid.RowDefinitions>
- <local:StatusBar Grid.Row="0" HorizontalAlignment="Center" VerticalAlignment="Center"/>
- <local:WorkArea Grid.Row="1" HorizontalAlignment="Center" VerticalAlignment="Center"/>
- <local:LogBar Grid.Row="2" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Grid>
- </Window>
|