<UserControl x:Class="CyberX8_Simulator.Views.PowerSupplierView" 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:CyberX8_Simulator.Views" xmlns:commons="clr-namespace:MECF.Framework.Simulator.Core.Commons;assembly=MECF.Framework.Simulator.Core" mc:Ignorable="d" d:DesignHeight="900" d:DesignWidth="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> </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>