0

我有 MDI 表单应用程序,此应用程序包含一个 menuStrip。
menuStrip 包含Save& save as

我想要的是,如果有一个打开的文件(MDI 子),save&save as将被启用,否则禁用。
注意:我没有任何代码可以做到这一点,因为我不知道在哪里可以编写代码。

现在,How I can write the code?where ?

4

1 回答 1

0

在创建子窗口时,

 var newChild = new Form() { MdiParent = this };
 menuItem.Enabled = true;
 newChild.FormClosing += (s, o) => menuItem.Enabled = (this.MdiChildren.Length  == 1) ? false : true;
 newChild.Show();
于 2013-10-01T13:35:33.963 回答