GalilView.xaml 4.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <UserControl x:Class="CyberX8_Simulator.Views.GalilView"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:CyberX8_Simulator.Views"
  7. xmlns:commons="clr-namespace:MECF.Framework.Simulator.Core.Commons;assembly=MECF.Framework.Simulator.Core"
  8. xmlns:i="http://schemas.microsoft.com/xaml/behaviors"
  9. mc:Ignorable="d"
  10. d:Height="900" d:Width="1200">
  11. <Grid>
  12. <Grid.RowDefinitions>
  13. <RowDefinition Height="100"></RowDefinition>
  14. <RowDefinition Height="50"></RowDefinition>
  15. <RowDefinition />
  16. <RowDefinition Height="10"></RowDefinition>
  17. </Grid.RowDefinitions>
  18. <commons:SocketTitleView Grid.Row="0"></commons:SocketTitleView>
  19. <Grid Grid.Row="1">
  20. <StackPanel Orientation="Horizontal" Width="1200">
  21. <Button Content="Clear Log" Width="100" Height="35" Command="{Binding ClearLogCommand}"></Button>
  22. <StackPanel Orientation="Horizontal" Width="577" Height="50" Margin="100,0,0,0">
  23. <Label Content="Inputs:" VerticalAlignment="Center"></Label>
  24. <ComboBox Width="250" Height="30" VerticalContentAlignment="Center" ItemsSource="{Binding InputsNameItems}" SelectedItem="{Binding InputsSelectedItem}">
  25. <i:Interaction.Triggers>
  26. <i:EventTrigger EventName="SelectionChanged">
  27. <i:InvokeCommandAction Command="{Binding InputsSelectionChangedCommand}"/>
  28. </i:EventTrigger>
  29. </i:Interaction.Triggers>
  30. </ComboBox>
  31. <ComboBox Width="60" Height="30" Margin="5,0,0,0" VerticalContentAlignment="Center" ItemsSource="{Binding DigitalOutputSelected}" SelectedItem="{Binding InputValue}" HorizontalContentAlignment="Center"></ComboBox>
  32. <Button Content="Set Input" Height="30" Width="100" Margin="5,10,0,0" Command="{Binding SetInputsCommand}"/>
  33. <Border Margin="5,0,0,0" Background="Black" Height="30" Width="80">
  34. <TextBlock Text="{Binding InputCurrentValue}" Foreground="Lime" FontSize="16" FontWeight="Bold" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  35. </Border>
  36. </StackPanel>
  37. </StackPanel>
  38. </Grid>
  39. <DataGrid Grid.Row="2" FontSize="16" AutoGenerateColumns="False" CanUserAddRows="False" CanUserResizeRows="False" CanUserSortColumns="False"
  40. ItemsSource="{Binding TransactionLogItems}"
  41. Width="1200" VerticalAlignment="Top" MaxHeight="780">
  42. <DataGrid.Columns>
  43. <DataGridTextColumn Header="Time" Width="200" IsReadOnly="True" Binding="{Binding OccurTime, UpdateSourceTrigger=PropertyChanged}" />
  44. <DataGridTextColumn Header="Incoming" Width="500" IsReadOnly="True" Binding="{Binding Incoming, UpdateSourceTrigger=PropertyChanged}">
  45. <DataGridTextColumn.ElementStyle>
  46. <Style TargetType="TextBlock">
  47. <Setter Property="TextWrapping" Value="Wrap" />
  48. <Setter Property="Height" Value="auto" />
  49. </Style>
  50. </DataGridTextColumn.ElementStyle>
  51. </DataGridTextColumn>
  52. <DataGridTextColumn Header="Outgoing" Width="500" IsReadOnly="True" Binding="{Binding Outgoing, UpdateSourceTrigger=PropertyChanged}">
  53. <DataGridTextColumn.ElementStyle>
  54. <Style TargetType="TextBlock">
  55. <Setter Property="TextWrapping" Value="Wrap" />
  56. <Setter Property="Height" Value="auto" />
  57. </Style>
  58. </DataGridTextColumn.ElementStyle>
  59. </DataGridTextColumn>
  60. </DataGrid.Columns>
  61. </DataGrid>
  62. </Grid>
  63. </UserControl>