diff options
author | sr55 <[email protected]> | 2011-11-20 20:02:49 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-11-20 20:02:49 +0000 |
commit | 02ef15e82e63c3d4924fde8a03ef277ee4339785 (patch) | |
tree | d6de272b833e11bde58bffc1307bf173434261d3 /win/CS/HandBrakeWPF/Views/Controls/AdvancedView.xaml | |
parent | c0c88720f5f59104770be38f0e84d7c2897ef465 (diff) |
WinGui: (WPF) Some further UI Work.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4362 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/Views/Controls/AdvancedView.xaml')
-rw-r--r-- | win/CS/HandBrakeWPF/Views/Controls/AdvancedView.xaml | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/win/CS/HandBrakeWPF/Views/Controls/AdvancedView.xaml b/win/CS/HandBrakeWPF/Views/Controls/AdvancedView.xaml index 9b2010852..78c784a37 100644 --- a/win/CS/HandBrakeWPF/Views/Controls/AdvancedView.xaml +++ b/win/CS/HandBrakeWPF/Views/Controls/AdvancedView.xaml @@ -5,7 +5,18 @@ xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300">
- <Grid Background="Beige">
-
+ <Grid>
+ <Grid.RowDefinitions>
+ <RowDefinition Height="Auto" />
+ <RowDefinition Height="Auto" />
+ <RowDefinition Height="*" />
+ </Grid.RowDefinitions>
+
+ <TextBlock Text="Advanced" FontWeight="Bold" Margin="10,5,0,0" Grid.Row="0" ></TextBlock>
+
+ <TextBox Grid.Row="2" Margin="10" VerticalAlignment="Stretch" HorizontalAlignment="Stretch">
+
+ </TextBox>
+
</Grid>
</UserControl>
|