C#创建窗口 – 定义父窗口

前端之家收集整理的这篇文章主要介绍了C#创建窗口 – 定义父窗口前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
@H_301_1@我想创建使用C#窗口,设置父级到我定义的句柄,
这是另一个进程窗口句柄.

有人知道怎么做吗?

问候,

解决方法

如果我正确地理解了你的问题,你应该能够通过使用这样的东西来实现你想要的东西:
class Win32Window : IWin32Window
{
    IntPtr handle;

    public Win32Window(IntPtr handle) { this.handle = handle; }

    public IntPtr Handle
    {
        get { return this.handle; }
    }
}

static void Main()
{
    IntPtr targetParent = // Get handle to the parent window

    new MainForm().ShowDialog(new Win32Window(targetParent));
}

这将使MainForm成为指定窗口的子窗口,使其始终显示在其上方.我在示例中使用了ShowDialog,但这也适用于Show.这是Windows窗体特有的.

在WPF中,您可以尝试以下操作:

var helper = new WindowInteropHelper(/* your Window instance */);

helper.Owner = // Set with handle for the parent

我在显示WPF窗口之后很快尝试了这个,它似乎按预期工作,但WPF知识并不是那么好.

原文链接:https://www.f2er.com/csharp/243240.html

猜你在找的C#相关文章