123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- <UserControl x:Class="MECF.Framework.Simulator.Core.FFUs.FfuView"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:MECF.Framework.Simulator.Core.FFUs"
- mc:Ignorable="d"
- xmlns:commons="clr-namespace:MECF.Framework.Simulator.Core.Commons"
- Height="900" Width="900" Background="LightBlue" Initialized="UserControl_Initialized">
- <UserControl.Resources>
- <commons:ConnectionStatusBackgroundConverter x:Key="connectionStatusBackgroundConverter"/>
- <Style TargetType="Label">
- <Setter Property="FontSize" Value="16" />
- <Setter Property="Padding" Value="10,0,10,0" />
- <Setter Property="VerticalContentAlignment" Value="Center" />
- </Style>
- </UserControl.Resources>
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="100"></RowDefinition>
- <RowDefinition Height="150"></RowDefinition>
- <RowDefinition Height="50"></RowDefinition>
- <RowDefinition Height="400"></RowDefinition>
- </Grid.RowDefinitions>
- <Grid Grid.Row="0" Grid.Column="0">
- <Grid.RowDefinitions>
- <RowDefinition Height="50"></RowDefinition>
- <RowDefinition Height="50"></RowDefinition>
- </Grid.RowDefinitions>
- <Label Grid.Row="0" Content="{Binding Title}" FontSize="20" VerticalContentAlignment="Center" HorizontalContentAlignment="Center" Height="50" Background="{Binding IsConnected, Converter={StaticResource connectionStatusBackgroundConverter}}" ></Label>
- <StackPanel Grid.Row="1" Orientation="Horizontal">
- <ComboBox Name="PortName" Text="{Binding PortSetPoint}" VerticalContentAlignment="Center" Width="120" Margin="20,0,0,0" Height="35" />
- <Label Content="Listen port:"></Label>
- <Label Content="{Binding LocalPort}"></Label>
- <Label Content="{Binding ConnectionStatus}"></Label>
- <Button Width="100" Height="35" Content="Enable" Command="{Binding EnableCommand}" IsEnabled="{Binding IsEnableEnable}"></Button>
- <Button Width="100" Height="35" Content="Disable" Command="{Binding DisableCommand}" IsEnabled="{Binding IsEnableDisable}"></Button>
- <Label Content="Connection:"></Label>
- <Label Content="{Binding RemoteConnection}"></Label>
- </StackPanel>
- </Grid>
- <Canvas Grid.Row="1" Width="900">
- <CheckBox Content="Fail" IsChecked="{Binding IsFailed}" Canvas.Left="36" Canvas.Top="31"></CheckBox>
- <CheckBox Content="Pump on" IsChecked="{Binding IsPumpOn}" Canvas.Left="36" Canvas.Top="86"></CheckBox>
- <CheckBox Content="OverTemp" IsChecked="{Binding IsOverTemp}" Canvas.Left="172" Canvas.Top="86"></CheckBox>
- <CheckBox Content="At Speed" IsChecked="{Binding IsAtSpeed}" Canvas.Left="324" Canvas.Top="90"></CheckBox>
- <TextBlock Text="Result:" Canvas.Left="155" Canvas.Top="42"></TextBlock>
- <TextBox Text="{Binding ResultValue, UpdateSourceTrigger=PropertyChanged }" Canvas.Left="212" Canvas.Top="31" Margin="0" Width="284"></TextBox>
- </Canvas>
- <StackPanel Grid.Row="2" Orientation="Horizontal" Width="900">
- <Button Content="Clear Log" Width="100" Height="35" Command="{Binding ClearLogCommand}"></Button>
- </StackPanel>
- <DataGrid Grid.Row="3" FontSize="16" AutoGenerateColumns="False" CanUserAddRows="False" CanUserResizeRows="False" CanUserSortColumns="False" ItemsSource="{Binding TransactionLogItems}"
- ScrollViewer.CanContentScroll="True"
- ScrollViewer.VerticalScrollBarVisibility="Auto"
- ScrollViewer.HorizontalScrollBarVisibility="Auto"
- Width="900" Height="380" VerticalAlignment="Top">
- <DataGrid.Columns>
- <DataGridTextColumn Header="Time" Width="160" IsReadOnly="True" Binding="{Binding OccurTime, UpdateSourceTrigger=PropertyChanged}"/>
- <DataGridTextColumn Header="Incoming" Width="350" IsReadOnly="True" Binding="{Binding Incoming, UpdateSourceTrigger=PropertyChanged}">
- <DataGridTextColumn.ElementStyle>
- <Style TargetType="TextBlock">
- <Setter Property="TextWrapping" Value="Wrap"/>
- <Setter Property="Height" Value="auto"/>
- </Style>
- </DataGridTextColumn.ElementStyle>
- </DataGridTextColumn>
- <DataGridTextColumn Header="Outgoing" Width="350" IsReadOnly="True" Binding="{Binding Outgoing, UpdateSourceTrigger=PropertyChanged}">
- <DataGridTextColumn.ElementStyle>
- <Style TargetType="TextBlock">
- <Setter Property="TextWrapping" Value="Wrap"/>
- <Setter Property="Height" Value="auto"/>
- </Style>
- </DataGridTextColumn.ElementStyle>
- </DataGridTextColumn>
- </DataGrid.Columns>
- </DataGrid>
- </Grid>
- </UserControl>
|