Function Reference

首页  后退  前进

TraySetClick

 

ÉèÖÃÍÐÅÌ(ÏÔʾÍÐÅ̲˵¥)µÄµã»÷ģʽ.

 

TraySetClick ( flag )

²ÎÊý

flag

0 = Êó±êµã»÷²»ÏÔʾÍÐÅ̲˵¥

1 = °´ÏÂÊó±ê×ó¼ü(ÏÔʾÍÐÅ̲˵¥)

2 = ÊÍ·ÅÊó±ê×ó¼ü(ÏÔʾÍÐÅ̲˵¥)

4 = Ë«»÷Êó±ê×ó¼ü(ÏÔʾÍÐÅ̲˵¥)

8 = °´ÏÂÊó±êÓÒ¼ü(ÏÔʾÍÐÅ̲˵¥)

16 = ÊÍ·ÅÊó±êÓÒ¼ü(ÏÔʾÍÐÅ̲˵¥)

32 = Ë«»÷Êó±êÓÒ¼ü(ÏÔʾÍÐÅ̲˵¥)

64 = Êó±êÐüÍ£ÍÐÅÌͼ±ê(ÏÔʾÍÐÅ̲˵¥)

·µ»ØÖµ

None.

±¸×¢

ÕâЩ±êÖ¾²»ÊÇÍÐÅÌʼþÖµ!

ĬÈÏֵΪ "9" - °´ÏÂÊó±ê×ó¼ü»òÕßÓÒ¼ü¼´ÏÔʾÍÐÅ̲˵¥.

Ïà¹Ø

TraySetOnEvent

º¯ÊýʾÀý

#NoTrayIcon
#include <MsgBoxConstants.au3>
#include <TrayConstants.au3> ; Required for the $TRAY_ICONSTATE_SHOW constant.
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.
Example()
Func Example()
    Local $idAbout = TrayCreateItem("About")
    TrayCreateItem("") ; Create a separator line.
    Local $idExit = TrayCreateItem("Exit")
    TraySetState($TRAY_ICONSTATE_SHOW) ; Show the tray menu.
    TraySetClick($TRAY_CLICK_HOVERING) ; Show the tray menu when the mouse if hovered over the tray icon.
    While 1
        Switch TrayGetMsg()
            Case $idAbout ; 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.
            Case $idExit ; Exit the loop.
                ExitLoop
        EndSwitch
    WEnd
EndFunc   ;==>Example

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