使用DX811控件,Winform的Mdi中子窗体只打开一次。

本文介绍了一个使用 DevExpress 控件库实现 Winform 应用程序中 Mdi 子窗体管理的方法。该方法确保同一类型的子窗体不会重复打开,并提供了打开新子窗体的逻辑。同时,通过 Mutex 实现了程序单实例运行。

使用dx8.11控件,Winform的Mdi中打开一次窗口,代码如下:

#region 打開窗口
private void OpenForm(string ChildTypeString)
{
DevExpress.Utils.WaitDialogForm wf = new DevExpress.Utils.WaitDialogForm("請等待......", "數據加載中:", new Size(300, 80));
DevExpress.XtraEditors.XtraForm myChild = null;
if (!ContainMDIChild(ChildTypeString))
{
try
{
Assembly assembly = Assembly.GetExecutingAssembly();
Type typForm = assembly.GetType(ChildTypeString);
Object obj = typForm.InvokeMember(null,
BindingFlags.DeclaredOnly | BindingFlags.Public | BindingFlags.NonPublic |
BindingFlags.Instance | BindingFlags.CreateInstance,
null, null, null);

if (obj != null)
{
myChild = obj as DevExpress.XtraEditors.XtraForm;
myChild.MdiParent = this;
myChild.Show();
myChild.Focus();
}
}
catch //(Exception x)
{
//MessageBox.Show(x.ToString());
}
}
wf.Close();
}

private bool ContainMDIChild(string ChildTypeString)
{
DevExpress.XtraEditors.XtraForm myMDIChild = null;
foreach (DevExpress.XtraEditors.XtraForm f in this.MdiChildren)
{
if (f.GetType().ToString() == ChildTypeString)
{
myMDIChild = f;
break;
}
}

if (myMDIChild != null)
{
myMDIChild.TopMost = true;
myMDIChild.Show();
myMDIChild.Focus();
return true;
}
else
{
return false;
}
}
#endregion

=========================

调用方式:OpenForm(typeof(FrmUser).ToString());

附:一次运行一个实例:

using System;
using System.Collections.Generic;
using System.Windows.Forms;
using System.Threading;

namespace Attend
{
static class Program
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);

bool bCreatedNew = false;
Mutex m = new Mutex(false, "HongKongAttend", out bCreatedNew);
if (bCreatedNew)
{
FrmLogin frmLogin = new FrmLogin();
frmLogin.ShowDialog();

if (frmLogin.DialogResult.Equals(DialogResult.OK))
{
Application.Run(new FrmMain());
}
}
else
{
MessageBox.Show("系統中已有此實例運行!", "系統提示:", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
}
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值