How can I make a single instance form (not application)?(如何制作单个实例表单(不是应用程序)?)
问题描述
在我的 C# 应用程序中,我有一个可以从菜单命令打开的选项对话框.
In my C# application I have an option dialog that can be opened from a menu command.
我想确保选项对话框只有一个实例(用户不能在给定时间打开多个选项窗口)而不使其成为模态.
I want to ensure that the option dialog have only one instance (user cannot open more than one option window at a given time) without making it modal.
此外,如果用户已经打开了这个窗口,并且他在菜单项中单击以再次打开它,则应用程序只会使已经可见的表单成为最顶部的窗口.
Also if the user already have this window opened, and he clicks in the menu item to open it again, the app just makes the already visible form became the top most window.
谁能指点我如何完成这些任务?
Can anyone point me directions on how accomplish these tasks?
非常感谢.
推荐答案
你需要这个表单作为属性
You will need this form as property
Form1 myForm = null;
private void Form1_FormClosed(object sender, FormClosedEventArgs e)
{
myForm = null;
}
private void ShowForm()
{
if (myForm != null)
{
myForm.BringToFront();
}
else
{
myForm = new Form1;
myForm.Show();
}
}
这篇关于如何制作单个实例表单(不是应用程序)?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何制作单个实例表单(不是应用程序)?


基础教程推荐
- 全局 ASAX - 获取服务器名称 2022-01-01
- 从 VS 2017 .NET Core 项目的发布目录中排除文件 2022-01-01
- 在 VS2010 中的 Post Build 事件中将 bin 文件复制到物 2022-01-01
- 错误“此流不支持搜索操作"在 C# 中 2022-01-01
- 将事件 TextChanged 分配给表单中的所有文本框 2022-01-01
- JSON.NET 中基于属性的类型解析 2022-01-01
- 是否可以在 asp classic 和 asp.net 之间共享会话状态 2022-01-01
- 经典 Asp 中的 ResolveUrl/Url.Content 等效项 2022-01-01
- 如何动态获取文本框中datagridview列的总和 2022-01-01
- 首先创建代码,多对多,关联表中的附加字段 2022-01-01