CSL.ErrorWindow.DiscardButton_Click C# (CSharp) Method

DiscardButton_Click() private method

private DiscardButton_Click ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
        private void DiscardButton_Click(object sender, EventArgs e)
        {
            discard = true;
            //Reset all to hidden -- the issues choose which one to show
            SelectionTextBox.Visible = false;
            ReleaseSelectionComboBox.Visible = false;
            BitformatSelectionComboBox.Visible = false;
            BitrateSelectionComboBox.Visible = false;
            BirthSelectionComboBox.Visible = false;
            PhysicalFormatSelectionComboBox.Visible = false;

            this.Hide();
        }