vb.net用API函数getWindowRect()获取窗体位置信息失败解决

前端之家收集整理的这篇文章主要介绍了vb.net用API函数getWindowRect()获取窗体位置信息失败解决前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

API函数getWindowRect()的定义

PrivateDeclareAutoFunctionGetWindowRectLib"user32"(ByValhwndAsIntPtr,ByVallpRectAsRECT)AsLong

位置信息结构体

PublicStructureRECT
PublicleftAsInt32
PublictopAsInt32
PublicrightAsInt32
PublicbottomAsInt32

EndStructure

调用

GetWindowRect(Me.Handle,p1)

问题描述:

使用GetWindowRect函数获取窗体的位置信息时,RECT中的left ,top ,right ,bottom 都是0


产生问题的原因:
API传递结构一般不用ByVal

解决方案:
ByVallpRectAsRECT改成ByReflpRectAsRECT 原文链接:https://www.f2er.com/vb/258757.html

猜你在找的VB相关文章