Statistics
| Branch: | Revision:

root / trunk / Pithos.Client.WPF / LogConsole / LogConsoleView.xaml @ 6f03d6e1

History | View | Annotate | Download (781 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
            
18
        </ListBox>
19
    </Grid>
20
</Window>