VB关于托盘处的右键菜单如何在鼠标移出时自动消失?或者单击其他的地方时消失?

我的代码已经是PrivateSubForm_MouseMove(ButtonAsInteger,ShiftAsInteger,XAsSingle,YAsSingle)Di... 我的代码已经是
Private Sub Form_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Dim msg As Long
msg = X / 15
If msg = WM_LBUTTONDBLCLK Then
Me.Show
Shell_NotifyIcon NIM_DELETE, nid
End If
Dim lMsg As Single
lMsg = X / Screen.TwipsPerPixelX
Select Case lMsg
Case WM_RBUTTONUP
Form1.PopupMenu mnufile '这是我在托盘时右键之后弹出的菜单
End Select
End Sub

请问一下怎样才能在托盘处的右键菜单如何实现鼠标移出时自动消失?或者单击其他的地方时消失?
展开
 我来答
Dalepf
2007-08-02 · 超过52用户采纳过TA的回答
知道答主
回答量:155
采纳率:0%
帮助的人:0
展开全部
调用API函数,以下为一个例程,当鼠标移到按钮上时,按钮标题变为Welcome,移出时变为Hello

Private Declare Function SetCapture Lib "user32" (ByVal hWnd As Long) As Long

Private Declare Function ReleaseCapture Lib "user32" () As Long

Private Sub Command1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
With Command1 'Change this to the name of the control
If Button = 0 Then
If (X < 0) Or (Y < 0) Or (X > .Width) Or (Y > .Height) Then
'Mouse pointer is outside button, so let other controls receive
'mouseevents too:
ReleaseCapture
Command1.Caption = "Hello"
' 放入鼠标离开的代码
Else
' Mouse pointer is over button, so we'll capture it, thus
' we'll receive mouse messages even if the mouse pointer is
' not over the button
SetCapture .hWnd
Command1.Caption = "Welcome"

' 放入鼠标进入的代码
End If
End If
End With
End Sub
smh1982
2007-08-03 · TA获得超过843个赞
知道小有建树答主
回答量:1578
采纳率:0%
帮助的人:887万
展开全部
楼主你是不是遇到点出来的菜单怎么也不消失吧?
告诉你吧,这是一个BUG。没有办法的,除非使用其它方法。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
wahynmd
2007-08-02 · 超过19用户采纳过TA的回答
知道小有建树答主
回答量:81
采纳率:0%
帮助的人:0
展开全部
你单击任务栏的任何地方都行(右键)
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式