Opc.Ua.Configuration.SelectApplicationDlg.OkBTN_Click C# (CSharp) Method

OkBTN_Click() private method

private OkBTN_Click ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
        private void OkBTN_Click(object sender, EventArgs e)
        {
            try
            {
                DialogResult = DialogResult.OK;
            }
            catch (Exception exception)
            {
                GuiUtils.HandleException(this.Text, MethodBase.GetCurrentMethod(), exception);
            }
        }
    }