MainWindow.xaml 1.1 KB

12345678910111213141516171819202122
  1. <Window x:Class="PLCIOPointTool.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:PLCIOPointTool.Views"
  7. xmlns:prism="http://prismlibrary.com/"
  8. prism:ViewModelLocator.AutoWireViewModel="True"
  9. mc:Ignorable="d"
  10. Title="PLC I/O Point Test Tool" Height="560" Width="600" ResizeMode="CanMinimize">
  11. <Grid>
  12. <Grid.RowDefinitions>
  13. <RowDefinition Height="70"/>
  14. <RowDefinition Height="190"/>
  15. <RowDefinition Height="260"/>
  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>