LogBar.xaml 966 B

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