Reparent non-modal form to existing application(将非模态表单重新映射到现有应用程序)
问题描述
我希望能够在现有应用程序中显示非模态表单.目前我可以这样做:
I would like to be able to show a non-modal form in an already existing application. At the moment I can do something like:
myform.ShowDialog(handleToApp);
但这将创建一个以应用程序为父对象的模态表单,而我真正要寻找的不是模态表单,因此当表单失去焦点时,它不会破坏控制流程并纠缠用户不要关闭.
but that will create a modal form parented to the application and what I'm really looking for something that isn't modal so when the form loses focus it won't break the flow of control and pester the user about not being closed.
有谁知道我如何或是否可以做我正在寻找的事情?
Does anyone know how or if I can do what I'm looking for?
推荐答案
我找到了我要找的东西,你必须创建一个如下所示的类:
I found what I was looking for, you have to make a class which looks like this:
public class MapinfoWindowHandle : System.Windows.Forms.IWin32Window
{
private IntPtr handle;
public MapinfoWindowHandle(IntPtr hWnd)
{
handle = hWnd;
}
#region IWin32Window Members
IntPtr System.Windows.Forms.IWin32Window.Handle
{
get { return handle; }
}
#endregion
}
然后你可以这样做:
IntPtr windowhandle = new IntPtr(hWnd);
MyForm.Show(new MapinfoWindowHandle(windowhandle));
这篇关于将非模态表单重新映射到现有应用程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:将非模态表单重新映射到现有应用程序


- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- 如何用自己压缩一个 IEnumerable 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- 输入按键事件处理程序 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01