C#多文档程序中如何只打开一个子窗口
Posted ----赖格英-----
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#多文档程序中如何只打开一个子窗口相关的知识,希望对你有一定的参考价值。
using System; using System.Collections.Generic; using System.Drawing; using System.Windows.Forms; namespace test { /// <summary> /// Description of MainForm. /// </summary> public partial class MainForm : Form { private Form1 fm1; public MainForm() { // // The InitializeComponent() call is required for Windows Forms designer support. // InitializeComponent(); // // TODO: Add constructor code after the InitializeComponent() call. // } void 文件ToolStripMenuItem1Click(object sender, EventArgs e) { if(fm1==null||fm1.IsDisposed) { fm1=new Form1(); fm1.MdiParent=this; fm1.Show(); }else { fm1.Activate(); fm1.WindowState=FormWindowState.Normal; } } } }
以上是关于C#多文档程序中如何只打开一个子窗口的主要内容,如果未能解决你的问题,请参考以下文章