diff options
author | sr55 <[email protected]> | 2015-02-09 21:45:19 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2015-02-09 21:45:19 +0000 |
commit | eb0e4cc28cb15403e0c17b97d08c567125e70b31 (patch) | |
tree | 5e70d51ac8649eb81e85fab548c3943d6c5921dc /win/CS/HandBrakeWPF/Views/QueueSelectionView.xaml | |
parent | 1b612fe204e796c328550c87f5c975064ec8798a (diff) |
WinGui: Misc UI consistency improvements.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6893 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/Views/QueueSelectionView.xaml')
-rw-r--r-- | win/CS/HandBrakeWPF/Views/QueueSelectionView.xaml | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/win/CS/HandBrakeWPF/Views/QueueSelectionView.xaml b/win/CS/HandBrakeWPF/Views/QueueSelectionView.xaml index 75538ef0a..c7da33fdb 100644 --- a/win/CS/HandBrakeWPF/Views/QueueSelectionView.xaml +++ b/win/CS/HandBrakeWPF/Views/QueueSelectionView.xaml @@ -7,8 +7,8 @@ xmlns:Conveters="clr-namespace:HandBrakeWPF.Converters"
xmlns:Properties="clr-namespace:HandBrakeWPF.Properties"
Title="{Binding Title}"
- Width="450"
- MaxHeight="450"
+ Width="550"
+ Height="450"
SizeToContent="Height"
WindowStartupLocation="CenterScreen"
TextOptions.TextFormattingMode="Display"
@@ -37,8 +37,8 @@ <!-- Header -->
<StackPanel Grid.Row="0"
- Height="36"
- Margin="0,0,0,10"
+ Height="42"
+ Margin="0,0,0,0"
Background="White"
Orientation="Horizontal">
<Image Width="32"
@@ -54,11 +54,13 @@ <!-- Text -->
<StackPanel Orientation="Vertical" Grid.Row="1" Margin="10,10,10,0">
- <TextBlock Text="Select multiple titles to add: " />
+ <TextBlock Text="Select titles: " />
</StackPanel>
<!-- Selection -->
<ListBox Grid.Row="2"
+ MinHeight="250"
+ MaxHeight="500"
Margin="10,10,10,10"
VerticalAlignment="Stretch"
Background="LightGray"
@@ -84,7 +86,7 @@ <ListBox.ItemTemplate>
<DataTemplate>
- <Grid HorizontalAlignment="Stretch" MinHeight="28">
+ <Grid HorizontalAlignment="Stretch" MinHeight="32" Margin="5">
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
|