diff options
Diffstat (limited to 'win/C#/ToolWindows/TitleSpecificScan.cs')
-rw-r--r-- | win/C#/ToolWindows/TitleSpecificScan.cs | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/win/C#/ToolWindows/TitleSpecificScan.cs b/win/C#/ToolWindows/TitleSpecificScan.cs new file mode 100644 index 000000000..6c938342e --- /dev/null +++ b/win/C#/ToolWindows/TitleSpecificScan.cs @@ -0,0 +1,55 @@ +/* TitleSpecificScan.cs $
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.fr>.
+ It may be used under the terms of the GNU General Public License. */
+
+namespace Handbrake.ToolWindows
+{
+ using System;
+ using System.Windows.Forms;
+
+ /// <summary>
+ /// Title Specific Scan
+ /// </summary>
+ public partial class TitleSpecificScan : Form
+ {
+ public TitleSpecificScan()
+ {
+ InitializeComponent();
+ }
+
+ /// <summary>
+ /// Button Cancel Click Event Handler
+ /// </summary>
+ /// <param name="sender">The Sender</param>
+ /// <param name="e">The EventArgs</param>
+ private void BtnCancelClick(object sender, EventArgs e)
+ {
+ this.DialogResult = DialogResult.Cancel;
+ }
+
+ /// <summary>
+ /// Button Scan Click Event Handler
+ /// </summary>
+ /// <param name="sender">The Sender</param>
+ /// <param name="e">The EventArgs</param>
+ private void BtnScanClick(object sender, EventArgs e)
+ {
+ this.DialogResult = DialogResult.OK;
+ }
+
+ /// <summary>
+ /// Gets the title that the user entered.
+ /// </summary>
+ public int Title
+ {
+ get
+ {
+ int title;
+ int.TryParse(this.titleNumber.Text, out title);
+
+ return title;
+ }
+ }
+ }
+}
\ No newline at end of file |