111,116
社区成员




class Form form1
{
private static form1 m_instance;
private form1()
{
//TODO...
}
public static Form getInstance()
{
if (m_instance == null)
{
m_instance = new form1();
}
return m_instance;
}
}
private void fundToolStripMenuItem_Click(object sender, EventArgs e)
{
Form1 frm1 = Form1.getInstance();
frm1.MdiParent = this;
frm1.Show();
}