13 references to DesignerActionUIStateChangeType
System.Design (1)
artifacts\obj\System.Design.Facade\Release\net9.0\System.Design.Forwards.cs (1)
26
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.Design.
DesignerActionUIStateChangeType
))]
System.Windows.Forms.Design (9)
System\ComponentModel\Design\DesignerActionUI.cs (4)
390
if (e.ChangeType ==
DesignerActionUIStateChangeType
.Show)
397
else if (e.ChangeType ==
DesignerActionUIStateChangeType
.Hide)
404
else if (e.ChangeType ==
DesignerActionUIStateChangeType
.Refresh)
411
else if (e.ChangeType ==
DesignerActionUIStateChangeType
.Hide)
System\ComponentModel\Design\DesignerActionUIService.cs (3)
50
new DesignerActionUIStateChangeEventArgs(component,
DesignerActionUIStateChangeType
.Hide));
54
new DesignerActionUIStateChangeEventArgs(component,
DesignerActionUIStateChangeType
.Show));
62
new DesignerActionUIStateChangeEventArgs(component,
DesignerActionUIStateChangeType
.Refresh));
System\ComponentModel\Design\DesignerActionUIStateChangeEventArgs.cs (2)
16
public DesignerActionUIStateChangeEventArgs(object? relatedObject,
DesignerActionUIStateChangeType
changeType)
30
public
DesignerActionUIStateChangeType
ChangeType { get; }
System.Windows.Forms.Design.Tests (3)
System\ComponentModel\Design\DesignerActionUIStateChangeEventArgsTests.cs (3)
10
yield return new object[] { null,
DesignerActionUIStateChangeType
.Show - 1 };
11
yield return new object[] { new(),
DesignerActionUIStateChangeType
.Show };
16
public void Ctor_Object_DesignerActionUIStateChangeType(object relatedObject,
DesignerActionUIStateChangeType
changeType)