我有一个 mdi 表单,主菜单上有很多子表单,我使用这样的代码打开子表单:
frmCustomers yeni = new frmCustomers();
if (GenelIslemler.formAuthCheck(yeni.Name.ToString()))
{
if (!IsOpen(yeni.Name.ToString()))
{
yeni.MdiParent = this;
yeni.WindowState = FormWindowState.Maximized;
yeni.Show();
}
}
else
{
MessageBox.Show("You dont have rights to access!", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
但我想编写一个方法,然后调用该方法的表单,例如
openForm(frmCustomers);
和 openForm 方法应该是这样的
openForm(Form frm) {...}
我能怎么做?