ich wollte wissen ob sich jemand mit dem Systray icon auskennt. Das Icon im Systray hinzufügen klappt schon aber ich kann kein kontextmenu machen. Kann mir da jemand helfen?
aber die Nachricht wird gesendet wenn sich die maus über dem icon bewegt, nicht wenn man die linke oder rechte taste drückt! Gibt es da vielleicht lbuttondown oder so?
These notifications are sent when a mouse event occurs in the bounding rectangle of the icon, or when the icon is selected or activated with the keyboard. The wParam parameter of the message contains the identifier of the taskbar icon in which the event occurred. The lParam parameter holds the mouse or keyboard message associated with the event. For example, when the pointer moves over a taskbar icon, lParam is set to WM_MOUSEMOVE. See the Taskbar guide chapter for further discussion.
d.h du baust dir z.b nen switch in die abfrage ein:
C++:
//... case WM_USER+1234: { switch(lParam) { case WM_LBUTTONDBLCLK: ShowWindow(hWnd,SW_SHOW); break; } } break; //...