diff options
author | sr55 <[email protected]> | 2012-07-23 18:28:21 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2012-07-23 18:28:21 +0000 |
commit | d45c3a5e8f2b56f55734f5816b0f62df9adfcefd (patch) | |
tree | 6ab5b607709efbe53897c469b1283c6046ec9213 /win/CS/HandBrakeWPF/Views/LogView.xaml | |
parent | 6c8108e0760796e153f62de9b08325f433105bff (diff) |
WinGui: Couple UI tweaks and better text rendering throughout the app since no-one complained yet.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4873 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/Views/LogView.xaml')
-rw-r--r-- | win/CS/HandBrakeWPF/Views/LogView.xaml | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/win/CS/HandBrakeWPF/Views/LogView.xaml b/win/CS/HandBrakeWPF/Views/LogView.xaml index ec47ad556..cb6687251 100644 --- a/win/CS/HandBrakeWPF/Views/LogView.xaml +++ b/win/CS/HandBrakeWPF/Views/LogView.xaml @@ -3,11 +3,12 @@ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:cal="http://www.caliburnproject.org"
Title="{Binding Title}"
- Width="500"
+ Width="525"
Height="600"
- MinWidth="500"
+ MinWidth="525"
MinHeight="600"
- WindowStartupLocation="CenterScreen">
+ WindowStartupLocation="CenterScreen"
+ TextOptions.TextFormattingMode="Display">
<Grid>
<Grid>
<Grid.RowDefinitions>
@@ -25,15 +26,16 @@ VerticalAlignment="Center"
FontWeight="Bold"
Text="Choose Log:" />
- <ComboBox Width="100"
- HorizontalAlignment="Right"
+ <ComboBox Width="120
+ " Margin="0,0,10,0" Background="LightSteelBlue" Height="22" FontWeight="Black"
+ HorizontalAlignment="Right" VerticalAlignment="Center"
ItemsSource="{Binding LogModes}"
SelectedIndex="{Binding SelectedMode}"
/>
<Separator />
- <Button cal:Message.Attach="[Event Click] = [Action CopyLog]">
+ <Button cal:Message.Attach="[Event Click] = [Action CopyLog]" Margin="10,0,0,0">
<StackPanel Orientation="Horizontal">
<Image Width="16" Source="Images/copy.png" />
<TextBlock Margin="2,0,0,0" Text="Copy to clipboard" />
|