_TrayCreateContextMenu
Создаёт контекстное меню в трее.
#Include <ModernMenuRaw.au3>
_TrayCreateContextMenu ( [$nID = -1] )
Параметры
$nID | Идентификатор меню или пункта |
Возвращаемое значение
Успех: | Возвращает идентификатор нового элемента. |
Ошибка: | Возвращает 0 |
Пример
; Holger
; http://www.autoitscript.com/forum/topic/20967-guitray-menu-with-icons-and-colors/
#include "ModernMenuRaw.au3"
#NoTrayIcon
Opt("GUIOnEventMode", 1)
Opt("TrayMenuMode", 7)
_SetFlashTimeOut(250)
$nTrayIcon = _TrayIconCreate("Моя программа", "shell32.dll", -209)
_TrayCreateContextMenu() ; контекстное меню иконки в трее
$bUseAdvTrayMenu = False
$nExit = _TrayCreateItem('Выход')
GUICtrlSetOnEvent(-1, "_Quit")
_TrayItemSetIcon(-1, "shell32.dll", -216)
_TrayIconSetState()
While 1
Sleep(10000)
WEnd
Func _Quit()
_TrayIconDelete($nTrayIcon)
Exit
EndFunc