diff options
author | [email protected] <sr55> | 2016-01-29 20:55:10 +0000 |
---|---|---|
committer | [email protected] <sr55> | 2016-01-29 20:55:10 +0000 |
commit | db29f87dc3bf3909d263491390d0f56418616e26 (patch) | |
tree | e0adda8c59fb4344fa8cff5ea6465afa130cc260 /win/CS/HandBrakeWPF/Views | |
parent | da7b1d29c60f740037883f44e07415580fc5d9a9 (diff) |
WinGui: Add support for the rotate and flip filter.
Diffstat (limited to 'win/CS/HandBrakeWPF/Views')
-rw-r--r-- | win/CS/HandBrakeWPF/Views/FiltersView.xaml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/Views/FiltersView.xaml b/win/CS/HandBrakeWPF/Views/FiltersView.xaml index edacca205..494adae51 100644 --- a/win/CS/HandBrakeWPF/Views/FiltersView.xaml +++ b/win/CS/HandBrakeWPF/Views/FiltersView.xaml @@ -37,6 +37,7 @@ <RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
+ <RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
@@ -123,6 +124,14 @@ <CheckBox Content="{x:Static Properties:ResourcesUI.FiltersView_Grayscale}" IsChecked="{Binding Grayscale}" Grid.Row="5" Grid.Column="1" Margin="0,0,0,10"
ToolTip="{x:Static Properties:ResourcesTooltips.FilterView_Grayscale}" />
+
+ <!-- Rotation -->
+ <TextBlock Text="{x:Static Properties:ResourcesUI.FiltersView_Rotate}" Grid.Row="6" Grid.Column="0" Margin="0,0,0,0"/>
+ <ComboBox Width="120" ItemsSource="{Binding RotationOptions}" Grid.Row="6" Grid.Column="1"
+ SelectedItem="{Binding SelectedRotation}"
+ HorizontalAlignment="Left" VerticalAlignment="Center" />
+
+ <CheckBox Content="{x:Static Properties:ResourcesUI.FiltersView_FlipVideo}" Margin="5,0,0,0" VerticalAlignment="Center" Grid.Row="6" Grid.Column="2" IsChecked="{Binding FlipVideo, UpdateSourceTrigger=PropertyChanged}" />
</Grid>
</StackPanel>
|