예제 #1
0
        private void newToolStripMenuItem_Click(object sender, EventArgs e)
        {
            TextEditWindow t = new TextEditWindow();

            t.MdiParent = this;
            t.Show();
        }
예제 #2
0
파일: Form1.cs 프로젝트: Northcode/NXCODE
 private void newToolStripMenuItem_Click(object sender, EventArgs e)
 {
     TextEditWindow t = new TextEditWindow();
     t.MdiParent = this;
     t.Show();
 }