Function Reference

首页  后退  前进

TrayItemSetOnEvent

 

定义托盘项目点击时调用的自定义函数.

 

TrayItemSetOnEvent ( itemID, "function" )

参数

itemID

使用 TrayCreateItem 函数返回的控件标识符.

function

调用的用户函数名称.

返回值

成功:

返回 1.

失败:

返回 0.

@error:

1 = "函数" 未定义.

备注

OnEvent(事件) 函数使用时需要设置 Opt("TrayOnEventMode", 1) - 此时不能使用 TrayGetMsg().

 

函数调用时, 控件标识符可由 @TRAY_ID 检索.

 

如果"函数"值为"", 则禁用先前的用户定义函数.

相关

TrayCreateItem, TrayGetMsg, TrayOnEventMode (Option), TraySetOnEvent

函数示例

#NoTrayIcon
#include <MsgBoxConstants.au3>
#include <TrayConstants.au3>
Opt("TrayMenuMode", 3) ; The default tray menu items will not be shown and items are not checked when selected. These are options 1 and 2 for TrayMenuMode.
Opt("TrayOnEventMode", 1) ; Enable TrayOnEventMode.
Example()
Func Example()
    TrayCreateItem("About")
    TrayItemSetOnEvent(-1, "About")
    TrayCreateItem("") ; Create a separator line.
    TrayCreateItem("Exit")
    TrayItemSetOnEvent(-1, "ExitScript")
    TraySetOnEvent($TRAY_EVENT_PRIMARYDOUBLE, "About") ; Display the About MsgBox when the tray icon is double clicked on with the primary mouse button.
    TraySetState($TRAY_ICONSTATE_SHOW) ; Show the tray menu.
    While 1
        Sleep(100) ; An idle loop.
    WEnd
EndFunc   ;==>Example
Func About()
    ; Display a message box about the AutoIt version and installation path of the AutoIt executable.
    MsgBox($MB_SYSTEMMODAL, "", "AutoIt tray menu example." & @CRLF & @CRLF & _
            "Version: " & @AutoItVersion & @CRLF & _
            "Install Path: " & StringLeft(@AutoItExe, StringInStr(@AutoItExe, "\", 0, -1) - 1)) ; Find the folder of a full path.
EndFunc   ;==>About
Func ExitScript()
    Exit
EndFunc   ;==>ExitScript

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