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