Control.Resize Event
.NET Framework (current version)
Occurs when the control is resized.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
To determine the Size of the resized control, you can cast the sender parameter of the registered ControlEventHandler method to a Control and get its Size property (or Height and Width properties individually).
To handle custom layouts, use the Layout event instead of the Resize event. The Layout event is raised in response to a Resize event, but also in response to other changes that affect the layout of the control.
For more information about handling events, see Handling and Raising Events.
.NET Framework
Available since 1.1
Available since 1.1
Show: