borderless form taskbar click event

Zexor

Well-known member
Joined
Nov 28, 2008
Messages
520
Programming Experience
3-5
is there an event that trigger when you click on the taskbar icon of the form? I mean other than the activate and deactivate or catching it when it minimized.
 
When you read the MSDN documentation for the events of the Form class, did it indicate that any of them were raised in that situation?

I don't know but more likely is that there's a specific Windows message that's received at that time. I'd suggest overriding the WndProc method of the form and logging the messages that the form receives and see if there's something specific that indicates a click on the Taskbar icon.
 
only the activate and deactivate message, there was no syscommand at all for the borderless form
 
Back
Top