diff options
author | sr55 <[email protected]> | 2017-08-23 19:40:20 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2017-08-23 19:40:20 +0100 |
commit | 0efb28ba6f4cc3970921480522f98e7830a03619 (patch) | |
tree | cbae819e65010e9cf49d53696812a56cf95f3c90 /win/CS/HandBrakeWPF/EventArgs | |
parent | 9fd048196eb423965496c14dac683e6e2546e14f (diff) |
WinGui: Initial implementation of the Summary Tab. This may be subject to change. #833
Diffstat (limited to 'win/CS/HandBrakeWPF/EventArgs')
-rw-r--r-- | win/CS/HandBrakeWPF/EventArgs/OutputFormatChangedEventArgs.cs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/EventArgs/OutputFormatChangedEventArgs.cs b/win/CS/HandBrakeWPF/EventArgs/OutputFormatChangedEventArgs.cs new file mode 100644 index 000000000..3c5b69ba3 --- /dev/null +++ b/win/CS/HandBrakeWPF/EventArgs/OutputFormatChangedEventArgs.cs @@ -0,0 +1,23 @@ +// -------------------------------------------------------------------------------------------------------------------- +// <copyright file="OutputFormatChangedEventArgs.cs" company="HandBrake Project (http://handbrake.fr)"> +// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. +// </copyright> +// <summary> +// OutputFormat Changed Event Args +// </summary> +// -------------------------------------------------------------------------------------------------------------------- + +namespace HandBrakeWPF.EventArgs +{ + using EventArgs = System.EventArgs; + + public class OutputFormatChangedEventArgs : EventArgs + { + public OutputFormatChangedEventArgs(string extension) + { + this.Extension = extension; + } + + public string Extension { get; private set; } + } +} |