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