summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/EventArgs
diff options
context:
space:
mode:
Diffstat (limited to 'win/CS/HandBrakeWPF/EventArgs')
-rw-r--r--win/CS/HandBrakeWPF/EventArgs/TabStatusEventArgs.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/EventArgs/TabStatusEventArgs.cs b/win/CS/HandBrakeWPF/EventArgs/TabStatusEventArgs.cs
new file mode 100644
index 000000000..5c2fae966
--- /dev/null
+++ b/win/CS/HandBrakeWPF/EventArgs/TabStatusEventArgs.cs
@@ -0,0 +1,20 @@
+// --------------------------------------------------------------------------------------------------------------------
+// <copyright file="TabStatusEventArgs.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>
+// --------------------------------------------------------------------------------------------------------------------
+
+namespace HandBrakeWPF.EventArgs
+{
+ using System;
+
+ public class TabStatusEventArgs : EventArgs
+ {
+ public TabStatusEventArgs(string tabKey)
+ {
+ this.TabKey = tabKey;
+ }
+
+ public string TabKey { get; private set; }
+ }
+}