将C++Hwnd传递到C#dll

本文关键字:C#dll C++Hwnd | 更新日期: 2023-09-27 18:21:08

我正在显示c++类中的一个c#对话框。我想将在C++代码中创建的窗口设置为C#对话框的父窗口。在调用C#对话框的ShowDialog方法之前,我将传入hwnd。我应该如何在我的C#方法中使用这个hwnd;c方法的原型和代码应该是什么?

感谢

将C++Hwnd传递到C#dll

您可以简单地将其公开为IntPtr。使用NativeWindow.AssignHandle()创建您需要的IWin32Window。完成后释放Handle()。

确保绝对安全不会有什么坏处,你会想知道父母何时因任何原因关闭,异常安全是一个问题。启发这个助手类:

using System;
using System.Windows.Forms;
using System.Runtime.InteropServices;
public class UnmanagedDialogParent : NativeWindow {
    private Form dialog;
    public DialogResult ShowDialog(IntPtr parent, Form dlg) {
        if (!IsWindow(parent)) throw new ArgumentException("Parent is not a valid window");
        dialog = dlg;
        this.AssignHandle(parent);
        DialogResult retval = DialogResult.Cancel;
        try {
            retval = dlg.ShowDialog(this);
        }
        finally {
            this.ReleaseHandle();
        }
        return retval;
    }
    protected override void WndProc(ref Message m) {
        if (m.Msg == WM_DESTROY) dialog.Close();
        base.WndProc(ref m);
    }
    // Pinvoke:
    private const int WM_DESTROY = 2;
    [DllImport("user32.dll")]
    private static extern bool IsWindow(IntPtr hWnd);
}

未测试,应该接近。

就是这样做的

var helper = new WindowInteropHelper(myWpfWind);
helper.Owner = hWnd; // hWnd is the IntPtr handle of my C++ window
myWpfWind.ShowDialog();

效果很好!!!