gpt4 book ai didi

VB.net 整数和短整型转换,GetMessagePos()

转载 作者:行者123 更新时间:2023-12-02 01:24:46 25 4
gpt4 key购买 nike

我正在尝试使用DWORD WINAPI GetMessagePos(void) VB.net 中的函数。

该函数返回一个 DWORD(32 位),可以存储在 VB.net 整型变量中。 MSDN 文档中的引用:

The x-coordinate is in the low-order short of the return value; the y-coordinate is in the high-order short (both represent signed values because they can take negative values on systems with multiple monitors)

如何使用 vb.net 检索 x 和 y 坐标?

我正在尝试

<System.Runtime.InteropServices.DllImport("user32.dll", ExactSpelling:=True)>
Private Shared Function GetMessagePos() As Integer
End Function
Sub test()
Dim pos As Integer = GetMessagePos()

Try
Dim x As Short = CShort(pos And &HFFFF)
Dim y As Short = CShort(pos >> 16)

MessageBox.Show(x & ", " & y)
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try
End Sub

但我不确定这是否是正确的方法。我正在尝试做一些测试,例如

    Try
Dim x As Short = -1
Dim y As Short = 1

Dim i As Int32 = (y << 16) Or x

Dim x2 As Short = CShort(i And &HFFFF)
Dim y2 As Short = CShort(i >> 16)

MessageBox.Show(x & ", " & y)
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try

基本上,我在 Short (Int16) 变量中编码 x 和 y 坐标,将它们放在 Int32 中,然后尝试解码。
但它似乎不起作用,因为它会导致溢出。

关于如何从 GetMessagePos() WINAPI 解码 x-y 坐标有什么想法吗?

最佳答案

提取这些值时必须小心,以确保它们在多监视器系统上正常工作。就您通常与 GetMessagePos 函数一起使用的方式而言,执行此操作的“标准”方法是 GET_X_LPARAMGET_Y_LPARAM宏,在 Windows SDK header 中定义。 GetMessagePos documentation中特别提到了这些。 ,并且在返回打包坐标的函数的所有文档中都应该有类似的引用。还有一个警告,不要使用经典的 LOWORDHIWORD 宏,因为它们将值视为无符号数量,正如您在问题中提到的那样。

因此,任务本质上是将 GET_X_LPARAMGET_Y_LPARAM 宏从 C 转换为 VB.NET。将它们转换为 C# 相对简单,因为您可以利用 unchecked 关键字:

int GetXValue(UInt32 lParam)
{
return unchecked((short)(long)lParam);
}

int GetYValue(UInt32 lParam)
{
return unchecked((short)((long)lParam >> 16));
}

但是 VB.NET 没有 C# 的 unchecked 关键字的等效项,因此您必须找到其他方法来避免溢出。就我个人而言,我用 C# 编写这种互操作代码并将其放入库中,这样我就可以做我认为最可读的事情。

如果您更愿意坚持使用 VB.NET,有几种方法可以实现。最简单的概念是将值作为 UInt32 进行操作以避免溢出。对于较低位中的 x 坐标,您需要显式屏蔽较高位以避免溢出。对于 y 坐标,您需要移动和 mask 。然后您可以转换回Short:

Public Function GetXValue(lParam As UInt32) As Short
Return CShort(lParam And &HFFFF)
End Function

Public Function GetYValue(lParam As UInt32) As Short
Return CShort((lParam >> 16) And &HFFFF)
End Function

另一种选择更聪明一点,也许聪明,但可能更高效。它涉及声明 C 样式联合的等效项,在 VB.NET 术语中,它只是一个字段重叠的结构:

<StructLayout(LayoutKind.Explicit)> _
Public Structure CoordUnion

<FieldOffset(0)> Public LParam As UInt32
<FieldOffset(0)> Public XCoord As Short
<FieldOffset(2)> Public YCoord As Short

Public Sub New(lParam As UInt32)
LParam = lParam
End Sub

End Structure

然后你可以像这样使用它:

Dim temp As CoordUnion = New CoordUnion(GetMessagePos())
Dim pt As Point = New Point(temp.XCoord, temp.YCoord)
' ...

另请注意,我已隐式更改了 GetMessagePos 的 P/Invoke 签名,以便它返回 UInt32:

<System.Runtime.InteropServices.DllImport("user32.dll", ExactSpelling:=True)>
Private Shared Function GetMessagePos() As UInt32
End Function

您可以在所有这些帮助器/转换函数中使用 IntPtr 类型,就像使用 UInt32 类型一样。事实上,这就是您通常编写它的方式,因为您通常会将这些指针坐标打包到 lParam 值中作为窗口消息的一部分(例如,当覆盖 WndProc 控件的方法)。

关于VB.net 整数和短整型转换,GetMessagePos(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40940112/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com