123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <UserControl x:Class="CyberX8_Simulator.Views.FestoView"
- 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:CyberX8_Simulator.Views"
- xmlns:commons="clr-namespace:MECF.Framework.Simulator.Core.Commons;assembly=MECF.Framework.Simulator.Core"
- mc:Ignorable="d"
- d:Height="900" d:Width="1200">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="100"></RowDefinition>
- <RowDefinition Height="50"></RowDefinition>
- <RowDefinition />
- <RowDefinition Height="10"></RowDefinition>
- </Grid.RowDefinitions>
- <commons:SocketTitleView Grid.Row="0"></commons:SocketTitleView>
- <Grid Grid.Row="1">
- <StackPanel Orientation="Horizontal" Width="1200">
- <Button Content="Clear Log" Width="100" Height="35" Command="{Binding ClearLogCommand}"></Button>
- <StackPanel Orientation="Horizontal" Width="500" Height="50" Margin="100,0,0,0">
- <Label Content="DO:" VerticalAlignment="Center"></Label>
- <ComboBox Width="250" Height="30" VerticalContentAlignment="Center" ItemsSource="{Binding DONameItems}" SelectedItem="{Binding DOSelectedItem}" />
- <ComboBox Width="60" Height="30" Margin="5,0,0,0" VerticalContentAlignment="Center" ItemsSource="{Binding DigitalOutputSelected}" SelectedItem="{Binding DOInputValue}" HorizontalContentAlignment="Center"></ComboBox>
- <Button Content="DOInput" Height="30" Width="100" Margin="5,10,0,0" Command="{Binding SetDOCommand}"/>
- </StackPanel>
- </StackPanel>
- </Grid>
- <DataGrid Grid.Row="2" FontSize="16" AutoGenerateColumns="False" CanUserAddRows="False" CanUserResizeRows="False" CanUserSortColumns="False"
- ItemsSource="{Binding TransactionLogItems}"
- Width="1200" VerticalAlignment="Top" MaxHeight="780">
- <DataGrid.Columns>
- <DataGridTextColumn Header="Time" Width="200" IsReadOnly="True" Binding="{Binding OccurTime, UpdateSourceTrigger=PropertyChanged}" />
- <DataGridTextColumn Header="Incoming" Width="500" 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="500" 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>
|