I did put a BindEvent for the resizing of an app window like this
Code: Select all
BindEvent(#PB_Event_SizeWindow, @onSizeMainWindow(), *W\PB)
BindEvent(#PB_Event_MaximizeWindow, @onSizeMainWindow(), *W\PB)
BindEvent(#PB_Event_MoveWindow, @onSizeMainWindow(), *W\PB)
BindEvent(#PB_Event_RestoreWindow, @onSizeMainWindow(), *W\PB)
Those double clicks upsize the window height to screen height.
How can this event be recognized?
Possible without windows subclassing?
Can this double click be prevented for the user?
Thanks a lot in advance!