Statistics
| Branch: | Revision:

root / trunk / Pithos.Client.WPF / LogConsole / LogConsoleView.xaml @ e9eab066

History | View | Annotate | Download (964 Bytes)

1
<Window x:Class="Pithos.Client.WPF.LogConsole.LogConsoleView"
2
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4
        Title="LogConsoleView" Height="300" Width="300">
5
    <Grid>
6
        <Grid.RowDefinitions>
7
            <RowDefinition Height="Auto"/>
8
            <RowDefinition />
9
        </Grid.RowDefinitions>
10
        <Grid.ColumnDefinitions>
11
            <ColumnDefinition />
12
            <ColumnDefinition Width="Auto"/>
13
        </Grid.ColumnDefinitions>
14

    
15
        <Button x:Name="RefreshEvents" Grid.Row="0" Grid.Column="1" Content="Refresh" Margin="5"/>
16
        <ListBox x:Name="Events" Grid.Row="1" Grid.ColumnSpan="2" Margin="5">
17
            <ListBox.ItemTemplate>
18
                <DataTemplate>
19
                <TextBlock Text="{Binding RenderedMessage}"/>
20
                </DataTemplate>
21
            </ListBox.ItemTemplate>
22
        </ListBox>
23
    </Grid>
24
</Window>