diff options
author | Scott <[email protected]> | 2015-09-26 21:10:52 +0100 |
---|---|---|
committer | Scott <[email protected]> | 2015-09-26 21:30:33 +0100 |
commit | a6cf5c5fd4b4c23ad3998ff270162768ce9ae6e7 (patch) | |
tree | 6161fd2aae762160cc70e3fd213eda4e57f0257f /win/CS/HandBrakeWPF/Controls | |
parent | c4008d7a492fa08449de6e19414a1acf101e53f5 (diff) |
Tidy up some Stylecop Warnings
Tidy up some Stylecop Warnings
Diffstat (limited to 'win/CS/HandBrakeWPF/Controls')
-rw-r--r-- | win/CS/HandBrakeWPF/Controls/SourceSelection.xaml.cs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/Controls/SourceSelection.xaml.cs b/win/CS/HandBrakeWPF/Controls/SourceSelection.xaml.cs index c487f5b98..cf8285292 100644 --- a/win/CS/HandBrakeWPF/Controls/SourceSelection.xaml.cs +++ b/win/CS/HandBrakeWPF/Controls/SourceSelection.xaml.cs @@ -27,12 +27,30 @@ namespace HandBrakeWPF.Controls this.InitializeComponent();
}
+ /// <summary>
+ /// The about request navigate.
+ /// </summary>
+ /// <param name="sender">
+ /// The sender.
+ /// </param>
+ /// <param name="e">
+ /// The e.
+ /// </param>
private void AboutHandBrake_OnRequestNavigate(object sender, RequestNavigateEventArgs e)
{
MainViewModel vm = this.DataContext as MainViewModel;
vm.OpenAboutApplication();
}
+ /// <summary>
+ /// The open options request navigate.
+ /// </summary>
+ /// <param name="sender">
+ /// The sender.
+ /// </param>
+ /// <param name="e">
+ /// The e.
+ /// </param>
private void OpenOptions_OnRequestNavigate(object sender, RequestNavigateEventArgs e)
{
MainViewModel vm = this.DataContext as MainViewModel;
|