Inheritance: System.Windows.Forms.Form
Example #1
0
        private void appearanceToolStripMenuItem_Click(object sender, EventArgs e)
        {
            AppearanceForm frm = new AppearanceForm();

            frm.ShowDialogCenter(this);
            if (frm.OK && map != null)
            {
                map.FullRedraw();
            }
        }
Example #2
0
 private void appearanceToolStripMenuItem_Click(object sender, EventArgs e)
 {
     AppearanceForm frm = new AppearanceForm();
     frm.ShowDialogCenter(this);
     if (frm.OK && map != null) map.FullRedraw();
 }