38 references to FormRevealMode
Microsoft.VisualBasic.Forms (6)
Microsoft\VisualBasic\ApplicationServices\ApplyApplicationDefaultsEventArgs.vb (2)
23formRevealMode As FormRevealMode, 43Public Property FormRevealMode As FormRevealMode
Microsoft\VisualBasic\ApplicationServices\WindowsFormsApplicationBase.vb (4)
71Private _formRevealMode As FormRevealMode = FormRevealMode.Classic 215Protected Property FormRevealMode As FormRevealMode 219Set(value As FormRevealMode)
System.Windows.Forms (32)
_generated\1\Validation.cs (2)
7public static void Validate(System.Windows.Forms.FormRevealMode enumToValidate, string parameterName = "value") 11ReportEnumValidationError(parameterName, intValue, typeof(System.Windows.Forms.FormRevealMode));
System\Windows\Forms\Application.cs (17)
48private static FormRevealMode? s_defaultFormRevealMode; 259/// Gets the configured default <see cref="FormRevealMode"/> used as the reveal behavior for 264/// If no mode has been configured with <see cref="SetDefaultFormRevealMode(FormRevealMode)"/>, this 265/// returns <see cref="FormRevealMode.Inherit"/>. Unlike <see cref="Form.FormRevealMode"/>, this 266/// getter may return the unresolved <see cref="FormRevealMode.Inherit"/> sentinel; use 270public static FormRevealMode DefaultFormRevealMode 271=> s_defaultFormRevealMode ?? FormRevealMode.Inherit; 279/// <see cref="DefaultFormRevealMode"/> is <see cref="FormRevealMode.Deferred"/>, or when it is 280/// <see cref="FormRevealMode.Inherit"/> (the default, when <see cref="SetDefaultFormRevealMode(FormRevealMode)"/> 284/// <see cref="SetDefaultFormRevealMode(FormRevealMode)"/> explicitly. 289FormRevealMode.Deferred => true, 290FormRevealMode.Classic => false, 430/// Sets the process-wide default <see cref="FormRevealMode"/> used for top-level forms that do 439/// called more than once, and <see cref="FormRevealMode.Inherit"/> is a valid argument (it resets 448/// <paramref name="mode"/> is not a valid <see cref="FormRevealMode"/> value. 450public static void SetDefaultFormRevealMode(FormRevealMode mode)
System\Windows\Forms\Form.RevealMode.cs (13)
24/// <see cref="FormRevealMode.Deferred"/> or <see cref="FormRevealMode.Classic"/>, resolved from 33/// <see cref="FormRevealMode.Deferred"/> and the DWM cloaking mechanism it relies on), so only 39/// <see cref="FormRevealMode.Classic"/> without affecting the process-wide default. 43[AmbientValue(FormRevealMode.Inherit)] 45public virtual FormRevealMode FormRevealMode 49if (!Properties.TryGetValue(s_propFormRevealMode, out FormRevealMode value) 50|| value == FormRevealMode.Inherit) 52value = Application.IsFormRevealDeferred ? FormRevealMode.Deferred : FormRevealMode.Classic; 61FormRevealMode previous = FormRevealMode; 63if (value == FormRevealMode.Inherit) 193=> FormRevealMode == FormRevealMode.Deferred