首页 > 代码库 > C#多文档程序中如何只打开一个子窗口
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#多文档程序中如何只打开一个子窗口
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。