NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Panel.OnResize

Fires the event indicating that the panel has been resized. Inheriting controls should use this in favour of actually listening to the event, but should not forget to call base.onResize() to ensure that the event is still fired for external listeners.

[Visual Basic]
Overrides Protected Sub OnResize( _
   ByVal eventargs As EventArgs _
)
[C#]
protected override void OnResize(
   EventArgs eventargs
);
[C++]
protected: override void OnResize(
   EventArgs* eventargs
);
[JScript]
protected override function OnResize(
   eventargs : EventArgs
);

Parameters

eventargs
e Event to send

See Also

Panel Class | Panel Members | System.WinForms Namespace