28 references to Normal
System.Windows.Forms (20)
System\Windows\Forms\Form.cs (20)
190Debug.Assert(_formState[s_formStateWindowState] == (int)FormWindowState.Normal, "Failed to set formState[FormStateWindowState]"); 693if (WindowState != FormWindowState.Normal) 798if (Visible && (WindowState is FormWindowState.Maximized or FormWindowState.Normal)) 2536[DefaultValue(FormWindowState.Normal)] 2547case FormWindowState.Normal: 2560case FormWindowState.Normal: 2964bool showRestore = winState != FormWindowState.Normal; 3067if ((FormWindowState)_formState[s_formStateWindowState] != FormWindowState.Normal 3372_formState[s_formStateWindowState] = (int)FormWindowState.Normal; 5076if (WindowState == FormWindowState.Normal) 5156if (WindowState == FormWindowState.Normal) 5181if (WindowState == FormWindowState.Normal) 5206if (WindowState != FormWindowState.Normal) 5240if (WindowState != FormWindowState.Normal) 5296if (WindowState == FormWindowState.Normal && (Height != height || Width != width)) 6523if (_formState[s_formStateWindowState] != (int)FormWindowState.Normal) 6525_formState[s_formStateWindowState] = (int)FormWindowState.Normal; 6552if (oldState == FormWindowState.Normal && WindowState != FormWindowState.Normal) 6582case FormWindowState.Normal:
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\FormDocumentDesigner.cs (1)
344form.WindowState = FormWindowState.Normal;
System.Windows.Forms.IntegrationTests.Common (1)
TestHelpers.cs (1)
387form.WindowState = FormWindowState.Normal;
System.Windows.Forms.Tests (3)
System\Windows\Forms\Design\ComponentEditorFormTests.cs (1)
165Assert.Equal(FormWindowState.Normal, control.WindowState);
System\Windows\Forms\FormTests.cs (2)
167Assert.Equal(FormWindowState.Normal, control.WindowState); 1029form.WindowState = FormWindowState.Normal;
System.Windows.Forms.UI.IntegrationTests (2)
FormTests.cs (2)
22[InlineData(FormWindowState.Normal)] 81[InlineData(FormWindowState.Normal)]
WinFormsControlsTest (1)
MdiChild.cs (1)
86WindowState = FormWindowState.Normal;