twapi를 이용한 예제입니다. 이 예제를 응용하면 Winico 같이 프로그램을 트레이로 넣을 수 있습니다.
set auto_path [linsert $auto_path 0 ./twapi-bin]
package require twapi
set ico [twapi::load_icon_from_system information -width 16 -height 16]
set ::systray_test_events {}
proc systray_test_handler {args} {
lappend ::systray_test_events $args
}
set id [twapi::systemtray addicon $ico [namespace current]::systray_test_handler]
set balloon "TWAPI Test balloon. Do not click until asked to do so."
set balloontitle "TWAPI Test"
twapi::systemtray modifyicon $id -balloon $balloon -balloontitle $balloontitle -balloonicon warning
after 3000 set ::wait_over 1
vwait ::wait_over
twapi::systemtray removeicon $id
puts $::systray_test_events
'Tcl & Tk > 팁 (Tip)' 카테고리의 다른 글
try/catch/finally 커맨드 (0) | 2025.03.26 |
---|---|
특정 주기로 실행하는 every 커맨드 (0) | 2025.03.26 |
Round Frame (0) | 2025.03.26 |
Embedding Tk into a native Win32 GUI (0) | 2025.03.26 |
파일 복사 진행 상황을 tablelist에 표시하기 (0) | 2025.03.24 |