summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/Views/LogView.xaml
blob: 1d26ef28cbe48881dce87b6c9d0c3fd1c6a7570a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<Window x:Class="HandBrakeWPF.Views.LogView"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="{Binding Title}" Height="600" Width="420">
    <Grid>
        <Grid>
            <Grid.RowDefinitions>
                <RowDefinition Height="Auto" />
                <RowDefinition Height="*" />
            </Grid.RowDefinitions>
            <ToolBar Grid.Row="0">
                <Button>
                    <StackPanel Orientation="Horizontal">
                        <Image Source="Images/copy.png" Width="16"/>
                        <TextBlock Text="Copy" Margin="2,0,0,0" />
                    </StackPanel>
                </Button>
                <Button Margin="5,0,0,0" >
                    <StackPanel Orientation="Horizontal">
                        <Image Source="Images/folder.png" Width="16"/>
                        <TextBlock Text="Open Log Directory" Margin="2,0,0,0" />
                    </StackPanel>
                </Button>
                
                <ComboBox Width="75" HorizontalAlignment="Right">
                </ComboBox>
            </ToolBar>

            <RichTextBox Grid.Row="1"  />
        </Grid>

    </Grid>
</Window>