I want to run some code after my form is resized. However, the following code never runs when I resize. I’m sure it is something simple I looked over(I am brand new to C# and programming in general). Thanks.
private void CalibrationForm_ResizeEnd(object sender, EventArgs e)
{
MessageBox.Show("You are in the Form.ResizeEnd event.");
}
You seems not hooking the event, even hook it in the properties (right click form then properties and choose the event as in the picture)
or hook the event in the constructor as follows: