VixenApplication.VixenApplication.optionsToolStripMenuItem_Click C# (CSharp) Method

optionsToolStripMenuItem_Click() private method

private optionsToolStripMenuItem_Click ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
        private void optionsToolStripMenuItem_Click(object sender, EventArgs e)
        {
            var dlg = new OptionsDialog();
            var res = dlg.ShowDialog();
            // so far the dialog box does it all, no real need for this check...
            if( res != DialogResult.OK)
                return;
        }