TVSorter.View.ListDialog.CloseButtonClick C# (CSharp) Méthode

CloseButtonClick() private méthode

Handles the close button being clicked.
private CloseButtonClick ( object sender, EventArgs e ) : void
sender object /// The sender of the event. ///
e System.EventArgs /// The arguments of the event. ///
Résultat void
        private void CloseButtonClick(object sender, EventArgs e)
        {
            this.DialogResult = DialogResult.Cancel;
            this.Close();
        }