键盘上哪个键是 X 键?

时间:2021-02-17 00:07:59
WM_XBUTTONUP Notification

--------------------------------------------------------------------------------


The WM_XBUTTONUP message is posted when the user releases  the first or second X button while the cursor is in the client area of a window. If the mouse is not captured, the message is posted to the window beneath the cursor. Otherwise, the message is posted to the window that has captured the mouse.

the first or second  x button 是指什么键?

5 个解决方案

#1


这个是鼠标上的键,不是键盘上的

#2


我觉得应该是这样:
The WM_XBUTTONUP message is posted when  the user releases the first or second X button .
用户释放鼠标单击或者双击,相应WM_XBUTTONUP。

#3


引用 2 楼 nola 的回复:
我觉得应该是这样:
The WM_XBUTTONUP message is posted when  the user releases the first or second X button .
用户释放鼠标单击或者双击,相应WM_XBUTTONUP。


没法顶一个

#4


WM_XBUTTONUP等消息中的“X”可为“L”、“M”、“B”,表示鼠标左键、中键、右键)

#5


引用 4 楼 visualeleven 的回复:
WM_XBUTTONUP等消息中的“X”可为“L”、“M”、“B”,表示鼠标左键、中键、右键)


顶,就象经常贴代码的时候,CXXXDlg::....什么的,X表示是应该被别的替换的
有很多消息,只有那个X所在的位置不一样,所以就用X代替了

#1


这个是鼠标上的键,不是键盘上的

#2


我觉得应该是这样:
The WM_XBUTTONUP message is posted when  the user releases the first or second X button .
用户释放鼠标单击或者双击,相应WM_XBUTTONUP。

#3


引用 2 楼 nola 的回复:
我觉得应该是这样:
The WM_XBUTTONUP message is posted when  the user releases the first or second X button .
用户释放鼠标单击或者双击,相应WM_XBUTTONUP。


没法顶一个

#4


WM_XBUTTONUP等消息中的“X”可为“L”、“M”、“B”,表示鼠标左键、中键、右键)

#5


引用 4 楼 visualeleven 的回复:
WM_XBUTTONUP等消息中的“X”可为“L”、“M”、“B”,表示鼠标左键、中键、右键)


顶,就象经常贴代码的时候,CXXXDlg::....什么的,X表示是应该被别的替换的
有很多消息,只有那个X所在的位置不一样,所以就用X代替了

相关文章