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