我有MDI表单应用程序,此应用程序包含一个menuStrip。
menuStrip包含Save
和save as
。
我想要的是,如果有一个打开的文件(MDI子文件),save
和save as
将被启用,否则将被禁用。
注意:我没有任何代码来执行此操作,因为我不知道在哪里可以编写代码。
现在,How I can write the code?
和where ?
on create child window,
var newChild = new Form() { MdiParent = this };
menuItem.Enabled = true;
newChild.FormClosing += (s, o) => menuItem.Enabled = (this.MdiChildren.Length == 1) ? false : true;
newChild.Show();