Prakash
Prakash

Reputation: 659

DockPanel Suite child form events not firing

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?

Upvotes: 1

Views: 346

Answers (1)

Santosh
Santosh

Reputation: 1815

Probably a bug, you can find more information on Dock panel dockchanged event don't trigger

Upvotes: 0

Related Questions