1

我正在制作一个 C# 程序,它应该将 matlab 程序停靠在 C# 表单上。原因是我的公司使用 matlab 程序进行非常复杂的计算。

对接后,该程序将被集成到一个 intouch Wonderware 环境中,这将使 HMI 和 matlab 程序之间的用户交互更加高效。

使用以下代码:

    [DllImport("user32.dll")]
    static extern IntPtr SetFocus(IntPtr hWnd);
    [DllImport("user32.dll")]
    public static extern IntPtr SetParent(IntPtr hWndChild, IntPtr hWndNewParent);
    [DllImport("user32.dll", SetLastError = true)]
    public static extern bool MoveWindow(IntPtr hWnd, int X, int Y, int nWidth, int nHeight, bool bRepaint);
    [DllImport("user32.dll", SetLastError = true)]
    public static extern IntPtr FindWindow(string lpClassName, string lpWindowName);
    [MonitoringDescriptionAttribute("ProcessMainWindowHandle")]
    public IntPtr MainWindowHandle { get; set; }

    public void getWinHandle(int parentWidth, int parentHeight)
    {

        hWnd = IntPtr.Zero;
        hWnd = FindWindow(null, "TSplot 2.3.1 (Build: 5626)");
        matlabPTR MatlabNativeWin = new matlabPTR();
        MatlabNativeWin.AssignHandle(hWnd);
        SetParent(hWnd, formiLuring.Handle);
        MoveWindow(hWnd, -8, -33, parentWidth+16, parentHeight+41, false);

    }
public class matlabPTR : NativeWindow
{
    protected override void WndProc(ref Message message)
    {
        const int WM_SYSCOMMAND = 0x0112;
        const int SC_MOVE = 0xF010;
        const int SC_SIZING = 0x0214;

        switch (message.Msg)
        {
            case WM_SYSCOMMAND:
                int command = message.WParam.ToInt32() & 0xfff0;

                if (command == SC_MOVE)
                {
                    return;
                }

                break;
        }

        base.WndProc(ref message);
    }
}

我已经成功创建了一个窗口句柄并将其添加到我的 C# 表单中。我也冻结了它,这样用户就不能移动这个 matlab 窗口。

然而,问题是 matlab 程序似乎并没有获得完全的焦点事件,尽管它应该有。Z 上的键盘按下通常会在 matlab 界面内生成缩放,但不知何故,matlab 程序没有注册这一点。

您可能会认为这是因为 C# 表单为自己获取了按键事件,但我尝试过覆盖 C# 事件,当 matlab 程序突出显示时,该事件不会触发。

我想要么我错过了什么,要么我做错了什么。

谢谢你的时间

4

0 回答 0