文本文档中“新建”的代码咋弄啊!
我们这段时间在实习,老师叫我们自己做一个文本,我在“新建”这个地方不知道怎么写,找到书上的一段代码,但总实现不了。
static int WindowCount=0;
private void toolStripMenuItem_Click(object sender,EventArgs e)
{
MdiChildren ch=new MdiChildren();
ch.Text="Document"+ ++WindowCount;
ch.Mdiparent=this;
ch.show();
}