diff options
author | sr55 <[email protected]> | 2011-10-25 21:31:15 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-10-25 21:31:15 +0000 |
commit | 6619723bda6ac183322dbc7ee908edcd013b9e7d (patch) | |
tree | 34b4cefafbeae2c7577d8ae1703fccd6c68441d5 /win/CS/HandBrakeWPF/Views | |
parent | a8802a947f04293cbc3a87a1d750c0add43666f2 (diff) |
WinGui: (WPF) Further work on the options screen. Initial rough styling and Load method.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4319 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/Views')
-rw-r--r-- | win/CS/HandBrakeWPF/Views/OptionsView.xaml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/Views/OptionsView.xaml b/win/CS/HandBrakeWPF/Views/OptionsView.xaml index 9c465d7f8..814b62d63 100644 --- a/win/CS/HandBrakeWPF/Views/OptionsView.xaml +++ b/win/CS/HandBrakeWPF/Views/OptionsView.xaml @@ -3,6 +3,24 @@ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:cal="http://www.caliburnproject.org"
Title="OptionsView" MinWidth="620" MinHeight="520" Width="620" Height="520">
+ <Window.Resources>
+ <Style TargetType="Button">
+ <Setter Property="Foreground" Value="DarkOrange" />
+ <Setter Property="FontWeight" Value="Bold" />
+ <Setter Property="Padding" Value="5,1" />
+ <Setter Property="FontSize" Value="12" />
+ </Style>
+
+ <Style TargetType="CheckBox">
+ <Setter Property="Margin" Value="0,0,0,5" />
+ </Style>
+
+ <Style TargetType="StackPanel">
+ <Setter Property="Margin" Value="0,0,0,5" />
+ </Style>
+ </Window.Resources>
+
+
<StackPanel Orientation="Vertical" Background="LightGray">
<!-- Header -->
<StackPanel Orientation="Horizontal" Background="White" Height="50" >
|