如何 子窗体修改父窗体的菜单属性?
在父窗体的Load事件中有如下代码:private void FrmMain_Load(object sender, EventArgs e)
{
货物管理MToolStripMenuItem.Enabled = false;
供应商管理GToolStripMenuItem.Enabled = false;
}
在子窗体的中如何将
货物管理MToolStripMenuItem.Enabled 改为true,
供应商管理GToolStripMenuItem.Enabled 改为true?
子窗体的代码是:
string ConnectStr = "server=localhost;database=ClassDesign;uid=sa;pwd=;";
SqlConnection mycon = new SqlConnection(ConnectStr);
try
{
mycon.Open();
MessageBox.Show("連接成功");
this.MdiParent.Text += " —已登录";
this.Hide();
}
catch
{
MessageBox.Show("连接失败","连接出错");
return;
}
高手指点指点, 表嫌我烦