_VSC++2010 windows窗体应用程序_不能将参数 1 从“HWND”转换为“System::String ^”
////获得坐标。POINTmouse;GetCursorPos(&mouse);intx=(int)mouse.x;inty=(int)mouse.y;this->te...
//
//获得坐标。
POINT mouse;
GetCursorPos(&mouse);
int x=(int)mouse.x ;
int y=(int)mouse.y ;
this->textBox1 ->Text =x.ToString() +","+y.ToString ();
//
//获得句柄。
HWND hWnd;
hWnd=WindowFromPoint(mouse);
this->textBox2 ->Text =hWnd;//代码出错。。。
请高手帮忙看下。。。。哪里错了怎么改??
……/*Form1.h(195) : error C2664: “void System::Windows::Forms::Control::Text::set(System::String ^)”: 不能将参数 1 从“HWND”转换为“System::String ^”
没有用户定义的转换运算符,或者
无法将非托管类型转换为托管类型*/ 展开
//获得坐标。
POINT mouse;
GetCursorPos(&mouse);
int x=(int)mouse.x ;
int y=(int)mouse.y ;
this->textBox1 ->Text =x.ToString() +","+y.ToString ();
//
//获得句柄。
HWND hWnd;
hWnd=WindowFromPoint(mouse);
this->textBox2 ->Text =hWnd;//代码出错。。。
请高手帮忙看下。。。。哪里错了怎么改??
……/*Form1.h(195) : error C2664: “void System::Windows::Forms::Control::Text::set(System::String ^)”: 不能将参数 1 从“HWND”转换为“System::String ^”
没有用户定义的转换运算符,或者
无法将非托管类型转换为托管类型*/ 展开
4个回答
展开全部
HWND是非托管类型,这里可以先转换HWND到int,在用ToString方法转换到System::String ^类型
this->textBox2 ->Text =((int)hWnd).ToString();
this->textBox2 ->Text =((int)hWnd).ToString();
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
hWnd应该先强制转换一下再转换成string才能给string赋值啊
追问
怎么强制转??给代码下。。。 我强制转的时候总是错误
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
unsigned int un = hWnd;
this->textBox2 ->Text =un.ToString();
this->textBox2 ->Text =un.ToString();
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2011-08-13
展开全部
不能
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询