10 references to DesignerActionUIStateChangeType
System.Design (1)
src\winforms\artifacts\obj\System.Design.Facade\Release\net11.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; }