From 361f4d9e6c055faa48c3ca61a97872d0216261f6 Mon Sep 17 00:00:00 2001 From: sr55 Date: Sun, 17 Sep 2017 15:43:47 +0100 Subject: WinGui: Initial ground work on code that will detect when the user modifies settings that don't match the currently selected preset. --- win/CS/HandBrakeWPF/EventArgs/TabStatusEventArgs.cs | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 win/CS/HandBrakeWPF/EventArgs/TabStatusEventArgs.cs (limited to 'win/CS/HandBrakeWPF/EventArgs/TabStatusEventArgs.cs') 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 @@ +// -------------------------------------------------------------------------------------------------------------------- +// +// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. +// +// -------------------------------------------------------------------------------------------------------------------- + +namespace HandBrakeWPF.EventArgs +{ + using System; + + public class TabStatusEventArgs : EventArgs + { + public TabStatusEventArgs(string tabKey) + { + this.TabKey = tabKey; + } + + public string TabKey { get; private set; } + } +} -- cgit v1.2.3