summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/Views/EncoderOptionsView.xaml
blob: c4e64d6a8ee243c1653efeb30b025dbfcc4c34c5 (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
<UserControl x:Class="HandBrakeWPF.Views.EncoderOptionsView"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
             x:Name="x264View"
             mc:Ignorable="d"
             >
    <Grid>
        <Grid.RowDefinitions>
            <RowDefinition Height="Auto" />
            <RowDefinition Height="100" />
        </Grid.RowDefinitions>

        <TextBlock Margin="10,5,10,0" Grid.Row="0"
                           VerticalAlignment="Center"
                           FontWeight="Bold"
                           Text="Advanced Query"
                           />
        <TextBox Grid.Row="1"
                         Margin="10,5,10,5"
                         HorizontalAlignment="Stretch"
                         VerticalAlignment="Stretch"
                         Text="{Binding AdvancedOptionsString, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
                         TextWrapping="Wrap"
                         />
    </Grid>
</UserControl>