Control.Resize Event

Definition

Occurs when the control is resized.

public event EventHandler Resize;
public event EventHandler? Resize;

Event Type

Examples

The following code example handles the Resize event of a Form. When the form is resized, the event handler ensures that the form stays square (its Height and Width remain equal). To run this example, make sure and associate this event-handling method with the form's Resize event.

private void Form1_Resize(object sender, System.EventArgs e)
{
   Control control = (Control)sender;
        
   // Ensure the Form remains square (Height = Width).
   if(control.Size.Height != control.Size.Width)
   {
      control.Size = new Size(control.Size.Width, control.Size.Width);
   }
}

Remarks

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.

Applies to

Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

See also