diff options
author | sr55 <[email protected]> | 2015-05-17 21:01:30 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2015-05-17 21:01:30 +0000 |
commit | 525d9fae34a7981eb5f6de46135d909551480043 (patch) | |
tree | a38306689787207fbd346fe32e69f261b455f6ec /win/CS/HandBrakeWPF/Views/AudioView.xaml | |
parent | f44ed828e6e1fa5f64d48be8f19bb5525434f263 (diff) |
WinGui: General tidy up and remove the custom styling for the app. The app will now always honour the system defaults.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7207 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/Views/AudioView.xaml')
-rw-r--r-- | win/CS/HandBrakeWPF/Views/AudioView.xaml | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/win/CS/HandBrakeWPF/Views/AudioView.xaml b/win/CS/HandBrakeWPF/Views/AudioView.xaml index 5dee3ee2d..b2aa68f5e 100644 --- a/win/CS/HandBrakeWPF/Views/AudioView.xaml +++ b/win/CS/HandBrakeWPF/Views/AudioView.xaml @@ -106,25 +106,11 @@ dd:DragDrop.IsDropTarget="True"
ItemsSource="{Binding Task.AudioTracks}"
SelectionMode="Extended">
- <ListBox.Style>
- <Style TargetType="ListBox">
- <Style.Triggers>
- <DataTrigger Binding="{Binding UseSystemColours}" Value="False">
- <Setter Property="Background" Value="LightGray" />
- </DataTrigger>
- </Style.Triggers>
- </Style>
- </ListBox.Style>
<ListBox.ItemContainerStyle>
<Style TargetType="ListBoxItem">
<Setter Property="HorizontalContentAlignment" Value="Stretch" />
<Setter Property="Margin" Value="0,0,0,1" />
- <Style.Triggers>
- <DataTrigger Binding="{Binding DataContext.UseSystemColours, ElementName=audioTab}" Value="False">
- <Setter Property="Background" Value="WhiteSmoke" />
- </DataTrigger>
- </Style.Triggers>
</Style>
</ListBox.ItemContainerStyle>
|