상속: System.Windows.Forms.Form
예제 #1
0
파일: MainForm.cs 프로젝트: Venseer/tools
        private void appearanceToolStripMenuItem_Click(object sender, EventArgs e)
        {
            AppearanceForm frm = new AppearanceForm();

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