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)
390if (e.ChangeType == DesignerActionUIStateChangeType.Show) 397else if (e.ChangeType == DesignerActionUIStateChangeType.Hide) 404else if (e.ChangeType == DesignerActionUIStateChangeType.Refresh) 411else if (e.ChangeType == DesignerActionUIStateChangeType.Hide)
System\ComponentModel\Design\DesignerActionUIService.cs (3)
50new DesignerActionUIStateChangeEventArgs(component, DesignerActionUIStateChangeType.Hide)); 54new DesignerActionUIStateChangeEventArgs(component, DesignerActionUIStateChangeType.Show)); 62new DesignerActionUIStateChangeEventArgs(component, DesignerActionUIStateChangeType.Refresh));
System\ComponentModel\Design\DesignerActionUIStateChangeEventArgs.cs (2)
16public DesignerActionUIStateChangeEventArgs(object? relatedObject, DesignerActionUIStateChangeType changeType) 30public DesignerActionUIStateChangeType ChangeType { get; }