38 references to FormRevealMode
Microsoft.VisualBasic.Forms (6)
Microsoft\VisualBasic\ApplicationServices\ApplyApplicationDefaultsEventArgs.vb (2)
23
formRevealMode As
FormRevealMode
,
43
Public Property FormRevealMode As
FormRevealMode
Microsoft\VisualBasic\ApplicationServices\WindowsFormsApplicationBase.vb (4)
71
Private _formRevealMode As
FormRevealMode
=
FormRevealMode
.Classic
215
Protected Property FormRevealMode As
FormRevealMode
219
Set(value As
FormRevealMode
)
System.Windows.Forms (32)
_generated\1\Validation.cs (2)
7
public static void Validate(System.Windows.Forms.
FormRevealMode
enumToValidate, string parameterName = "value")
11
ReportEnumValidationError(parameterName, intValue, typeof(System.Windows.Forms.
FormRevealMode
));
System\Windows\Forms\Application.cs (17)
48
private 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
270
public 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.
289
FormRevealMode
.Deferred => true,
290
FormRevealMode
.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.
450
public 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)]
45
public virtual
FormRevealMode
FormRevealMode
49
if (!Properties.TryGetValue(s_propFormRevealMode, out
FormRevealMode
value)
50
|| value ==
FormRevealMode
.Inherit)
52
value = Application.IsFormRevealDeferred ?
FormRevealMode
.Deferred :
FormRevealMode
.Classic;
61
FormRevealMode
previous = FormRevealMode;
63
if (value ==
FormRevealMode
.Inherit)
193
=> FormRevealMode ==
FormRevealMode
.Deferred