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