gpt4 book ai didi

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

转载 作者:可可西里 更新时间:2023-11-01 13:21:17 24 4
gpt4 key购买 nike

我想使用 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 知识不是那么多。

关于C# 创建窗口——定义父窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6145872/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com