函数参考


TrayItemGetText

得到系统托盘图标里面的 菜单/项目 控件的文本.

TrayItemGetText ( 控件ID )

参数

控件ID 控件标识 (controlID),参考 TrayCreateItem 或者 TrayCreateMenu 函数的返回值.

返回值

成功: 返回 1.
失败: 返回 0.

注意/说明

None.

相关

TrayItemSetText, TrayItemGetHandle

示例/演示


#NoTrayIcon

Opt("TrayMenuMode", 3) ; 默认菜单项目 (脚本暂停中/退出)(Script Paused/Exit) 将不会显示,并且所选项目不能被选中(checkbox不会打勾) . 请参考TrayMenuMode选项1和2(3=1+2).

Example()

Func Example()
    Local $iGetText = TrayCreateItem("得到'关于'文本")
    TrayCreateItem("") ; Create a separator line.

    Local $iAbout = TrayCreateItem("关于")
    TrayCreateItem("") ; Create a separator line.

    Local $iExit = TrayCreateItem("退出")

    TraySetState(1) ; Show the tray menu.

    While 1
        Switch TrayGetMsg()
            Case $iAbout ; Display a message box about the AutoIt version and installation path of the AutoIt executable.
                MsgBox(4096, "", "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.

            Case $iGetText
                ; Display a message box about the text of the 'About' item.
                MsgBox(4096, "", "The text of the 'About' item is: " & TrayItemGetText($iAbout))

            Case $iExit ; Exit the loop.
                ExitLoop
        EndSwitch
    WEnd
EndFunc   ;==>Example