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)
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; }
System.Windows.Forms.Design.Tests (3)
System\ComponentModel\Design\DesignerActionUIStateChangeEventArgsTests.cs (3)
10yield return new object[] { null, DesignerActionUIStateChangeType.Show - 1 }; 11yield return new object[] { new(), DesignerActionUIStateChangeType.Show }; 16public void Ctor_Object_DesignerActionUIStateChangeType(object relatedObject, DesignerActionUIStateChangeType changeType)