/* TitleSpecificScan.cs $ This file is part of the HandBrake source code. Homepage: . It may be used under the terms of the GNU General Public License. */ namespace Handbrake { using System; using System.Windows.Forms; /// /// Title Specific Scan /// public partial class TitleSpecificScan : Form { public TitleSpecificScan() { InitializeComponent(); } /// /// Button Cancel Click Event Handler /// /// The Sender /// The EventArgs private void BtnCancelClick(object sender, EventArgs e) { this.Close(); } /// /// Button Scan Click Event Handler /// /// The Sender /// The EventArgs private void BtnScanClick(object sender, EventArgs e) { this.DialogResult = DialogResult.OK; } /// /// Gets the title that the user entered. /// public int Title { get { int title; int.TryParse(this.titleNumber.Text, out title); return title; } } } }