diff options
author | sr55 <[email protected]> | 2013-12-06 21:32:58 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2013-12-06 21:32:58 +0000 |
commit | 87737b6fe394bfb86bd277ccbe314bf11cf14374 (patch) | |
tree | 9ca43317c63844a799a4b965b3586fa240c7b6a2 /win/CS/HandBrakeWPF/Views | |
parent | c828c40cda553c822560cea5c72522812036abda (diff) |
WinGui: Some further work in the background on the still preview feature.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5922 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/Views')
-rw-r--r-- | win/CS/HandBrakeWPF/Views/MainView.xaml | 3 | ||||
-rw-r--r-- | win/CS/HandBrakeWPF/Views/PictureSettingsView.xaml | 10 |
2 files changed, 8 insertions, 5 deletions
diff --git a/win/CS/HandBrakeWPF/Views/MainView.xaml b/win/CS/HandBrakeWPF/Views/MainView.xaml index 46fc614f0..9c5a21f00 100644 --- a/win/CS/HandBrakeWPF/Views/MainView.xaml +++ b/win/CS/HandBrakeWPF/Views/MainView.xaml @@ -686,7 +686,8 @@ <!-- Source Selection-->
<Controls:SourceSelection Grid.Row="1" Width="400" VerticalAlignment="Stretch" BorderThickness="1" BorderBrush="DarkGray"
- Visibility="{Binding ShowSourceSelection, Converter={StaticResource boolToVisConverter}}" />
+ Visibility="{Binding ShowSourceSelection, Converter={StaticResource boolToVisConverter}}"
+ Margin="0,10,0,10" />
<!-- StatusPanel -->
<Controls:StatusPanel x:Name="loadingPanel"
diff --git a/win/CS/HandBrakeWPF/Views/PictureSettingsView.xaml b/win/CS/HandBrakeWPF/Views/PictureSettingsView.xaml index 629fa85a1..2a5d136bc 100644 --- a/win/CS/HandBrakeWPF/Views/PictureSettingsView.xaml +++ b/win/CS/HandBrakeWPF/Views/PictureSettingsView.xaml @@ -16,6 +16,12 @@ <StackPanel Orientation="Horizontal" VerticalAlignment="Stretch" HorizontalAlignment="Stretch">
+ <StackPanel.ContextMenu>
+ <ContextMenu>
+ <MenuItem Header="Show Still Preview (Experimental)" cal:Message.Attach="[Event Click] = [Action PreviewImage]" Visibility="Visible" />
+ </ContextMenu>
+ </StackPanel.ContextMenu>
+
<!-- Size Panel-->
<StackPanel Name="SizePanel" Orientation="Vertical" >
<Label Content="Size" FontWeight="Bold" />
@@ -144,10 +150,6 @@ </Grid>
-
- <Label Content="Preview" FontWeight="Bold" Margin="15,0,0,0" Visibility="Collapsed"/>
- <Button Content="Show Preview" cal:Message.Attach="[Event Click] = [Action PreviewImage]" Visibility="Collapsed" />
-
</StackPanel>
</StackPanel>
</UserControl>
|