I'm using WeifenLuo Dockpanel Suite in winforms.
i have 2 forms (Main & child form), Main form has dockpanel & child form will be docked in this dockpanel.
in child form, none of the events are firing except DockChanged & DockStateChanged
private: Void CamWindow_ResizeBegin(System::Object^ sender, System::EventArgs^ e) {
Console::WriteLine("Resize begin"); //doesn't work, tried many other mouse events as well
}
private: Void CamWindow_DockStateChanged(System::Object^ sender, System::EventArgs^ e) {
Console::WriteLine("Dock state Changed"); //works
}
i don't think this is bug, how to make these events fire?
Probably a bug, you can find more information on Dock panel dockchanged event don't trigger