从WPF窗口内的托管DLL启动WNDProc

时间:2012-05-31 19:02:54

标签: c++ wpf winapi

我一直在试图让托管DLL与我的WPF应用程序一起工作。我的想法是从WPF MainWindow后面的代码中调用函数(所以我可以得到窗口句柄)并传递它和另一个指针,它最终成为wchar_t类型的指针。

我可以调用dll然而WNDProc没有启动,我认为它与应用程序的实例甚至句柄有关,但是我不能把手指放在它上面。项目构建成功,只是没有运行WNDProc。

该应用程序的想法是使用WPF并调用c ++来启动调用Windows内置的远程协助API的服务器实例。

继承我所拥有的:

#pragma once

#include "stdafx.h"
#include <winsock2.h>
#include <tchar.h>
#include "RDP.h"

#pragma warning(disable : 4996)
#pragma warning(disable : 4267)
#pragma comment(lib,"ws2_32.lib")

namespace RDPServerSession
{
RAS::SERVER* s = 0;
HWND MainWindow = 0;
HWND hL = 0;
HINSTANCE hAppInstance = 0;
wchar_t* password;

enum
{
    MESSAGE_NOTIFY = WM_USER + 2,
};

public ref class Server
{
public:
    void StartServer(System::IntPtr id, System::IntPtr handle)
    {
        password = reinterpret_cast<wchar_t*>(id.ToPointer());

        WSADATA wData;
        WSAStartup(MAKEWORD(2, 2), &wData);
        CoInitializeEx(0,COINIT_APARTMENTTHREADED);
        /*INITCOMMONCONTROLSEX icex = {0};
        icex.dwICC = ICC_LISTVIEW_CLASSES | ICC_DATE_CLASSES | ICC_WIN95_CLASSES;
        icex.dwSize = sizeof(icex);
        InitCommonControlsEx(&icex);*/
        //InitCommonControls();
        //PrepareDoMatchTable();

        hAppInstance = GetModuleHandle(NULL);

        WNDCLASSEX wClass = {0};
        wClass.cbSize = sizeof(wClass);

        wClass.style = CS_DBLCLKS | CS_HREDRAW | CS_VREDRAW | CS_PARENTDC;
        wClass.lpfnWndProc = (WNDPROC)Main_DP;
        wClass.hInstance = hAppInstance;
        wClass.hCursor = LoadCursor(0, IDC_ARROW);
        wClass.hbrBackground = (HBRUSH) GetStockObject(WHITE_BRUSH);
        wClass.lpszClassName = _T("CLASS");
        RegisterClassEx(&wClass);

        /*MainWindow = CreateWindowEx(0,
            _T("CLASS"),
            ttitle,
            WS_OVERLAPPEDWINDOW | WS_CLIPSIBLINGS |
            WS_CLIPCHILDREN, CW_USEDEFAULT, CW_USEDEFAULT,
            500, 600, 0,LoadMenu(h,_T("MENU_1")), h, 0);*/

        ShowWindow(MainWindow,SW_SHOW);

        MSG msg;

        while(GetMessage(&msg,0,0,0))
        {
            TranslateMessage(&msg);
            DispatchMessage(&msg);
        }
        return;
    }



    static void StartS(HWND hh)
{
if (!s)
    {
    s = new RAS::SERVER;
    int ty = 0,po = 0,col = 16;
    bool dy = 0;

    bool Rev = false;
    if (GetKeyState(VK_CONTROL) >> 15)
        Rev = true;



    s->CreateVirtualChannel(L"test",true,CHANNEL_PRIORITY_MED);
    s->Open();
    s->SetWindowNotification(hh,MESSAGE_NOTIFY);

    vector<int> pids;
    vector<wstring> names;
    vector<int> ST;
    s->GetShareableApplications(pids,names,ST);

    RAS::S_INVITATION* inv = s->Invite(0,password,L"group",3);
    if (inv)
        {
        const wchar_t* password = inv->GetTicket().c_str();
        }

    return;
    }
else
    {
    delete s;
    s = 0;
    }
}

static LRESULT CALLBACK Main_DP(HWND hh,UINT mm,WPARAM ww,LPARAM ll)
{
switch(mm)
    {
    case WM_COMMAND:
        {
        int LW = LOWORD(ww);
        if (LW == 100)
            StartS(hh);
        return 0;
        }

    case WM_CLOSE:
        {
        if (s)
            StartS(hh);
        DestroyWindow(hh);
        return 0;
        }

    case WM_DESTROY:
        {
        PostQuitMessage(0);
        return 0;
        }
    }
return DefWindowProc(hh,mm,ww,ll);
}




    void StopServer() { delete s; }
    ~Server() { }
};

}

关于为什么Wndproc不运行的任何想法或建议?

干杯。

2 个答案:

答案 0 :(得分:1)

窗口过程Main_DP与窗口类CLASS相关联。但是你没有用该类创建一个窗口(代码被注释掉),因此不使用窗口过程。

<强>更新

您希望处理现有主窗口的消息,但无法将新窗口类与现有窗口关联。相反,您需要subclass the window。 (正如Ben Voigt所指出的,你不应该使用SetWindowLong技术。)

一旦将子窗口子类化,就不需要自己的消息循环了。只需返回WPF代码即可。 (请注意,可能无法用您自己的消息循环可靠地替换WPF的消息循环。它可能不仅仅是简单的TranslateMessage/DispatchMessage。)

答案 1 :(得分:0)

您可以使用资源创建表单并使用 CreateDialogParam()