LogBar.xaml 930 B

1234567891011121314151617181920
  1. <UserControl x:Class="PLCIOPointTool.Views.LogBar"
  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:PLCIOPointTool.Views"
  7. xmlns:prism="http://prismlibrary.com/"
  8. prism:ViewModelLocator.AutoWireViewModel="True"
  9. Width="580" Height="250"
  10. mc:Ignorable="d">
  11. <Grid Background="#FFCECECE">
  12. <Grid.RowDefinitions>
  13. <RowDefinition Height="25"/>
  14. <RowDefinition Height="225"/>
  15. </Grid.RowDefinitions>
  16. <Label Grid.Row="0">Log:</Label>
  17. <ListView Grid.Row="1" ItemsSource="{Binding Logs}" Margin="3,3,3,3"/>
  18. </Grid>
  19. </UserControl>