c# – 将HWND转换为IntPtr(CLI)

前端之家收集整理的这篇文章主要介绍了c# – 将HWND转换为IntPtr(CLI)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在我的C MFC代码中有一个HWND,我想将这个HWND传递给一个C#控件,并将其作为IntPtr.

我的代码有什么问题,如何正确执行?
(我认为使用CLI指针是错误的,因为我收到一个不能从System :: IntPtr ^转换为System :: IntPtr的错误,但是我不知道如何使它能正常工作. ..)

我的C MFC代码

HWND myHandle= this->GetSafeHwnd();
m_CLIDialog->UpdateHandle(myHandle);

我的C#代码

public void UpdateHandle(IntPtr mHandle)
{
   ......
}

我的CLI代码

void CLIDialog::UpdateHandle(HWND hWnd)
{
   System::IntPtr^ managedhWnd = gcnew System::IntPtr();
   HWND phWnd; // object on the native heap

   try
   {

       phWnd = (HWND)managedhWnd->ToPointer();
        *phWnd = *hWnd; //Deep-Copy the Native input object to Managed wrapper.

       m_pManagedData->CSharpControl->UpdateHandle(managedhWnd);
    }

当前在m_pManagedData-> CSharpControl-> UpdateHandle(managedhWnd)中出现错误(无法从IntPtr ^转换为IntPtr);

如果我将CLI代码更改为:

void CLIDialog::UpdateHandle(HWND hWnd)
{
   System::IntPtr managedhWnd;
   HWND phWnd; // object on the native heap

   try
   {

       phWnd = (HWND)managedhWnd.ToPointer();
        *phWnd = *hWnd; //Deep-Copy the Native input object to Managed wrapper.

       m_pManagedData->CSharpControl->UpdateHandle(managedhWnd);
    }

所以在这种情况下,C#中得到的值为0.

如何使其正常工作?

解决方法

要将HWND(这只是一个指针)转换为IntPtr,您只需要调用它的构造函数,并且不需要gcnew,因为它是一个值类型.
所以这应该可以将HWND从本机传递到管理:
void CLIDialog::UpdateHandle( HWND hWnd )
{
  IntPtr managedHWND( hwnd );
  m_pManagedData->CSharpControl->UpdateHandle( managedHWND );
}

这是一个可以从托管代码调用函数,并从本地代码获取本地HWND:

void SomeManagedFunction( IntPtr hWnd )
{
  HWND nativeHWND = (HWND) hWnd.ToPointer();
  //...
}
原文链接:https://www.f2er.com/csharp/96146.html

猜你在找的C#相关文章