示例#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();
 }