6 instantiations of UICuesEventArgs
System.Windows.Forms (1)
System\Windows\Forms\Control.cs (1)
12101
OnChangeUICues(new
UICuesEventArgs
(UIcues));
System.Windows.Forms.Tests (5)
System\Windows\Forms\ControlTests.Handlers.cs (2)
780
yield return new object[] { new
UICuesEventArgs
(UICues.None) };
781
yield return new object[] { new
UICuesEventArgs
(UICues.Changed) };
System\Windows\Forms\ToolStripDropDownTests.cs (2)
3682
yield return new object[] { new
UICuesEventArgs
(UICues.None) };
3683
yield return new object[] { new
UICuesEventArgs
(UICues.Changed) };
System\Windows\Forms\UICuesEventArgsTests.cs (1)
21
UICuesEventArgs e =
new
(uicues);
9 references to UICuesEventArgs
System.Windows.Forms (3)
System\Windows\Forms\Control.cs (1)
7959
protected virtual void OnChangeUICues(
UICuesEventArgs
e)
System\Windows\Forms\Controls\ListBoxes\ListBox.cs (1)
1695
protected override void OnChangeUICues(
UICuesEventArgs
e)
System\Windows\Forms\UICuesEventHandler.cs (1)
9
public delegate void UICuesEventHandler(object? sender,
UICuesEventArgs
e);
System.Windows.Forms.Tests (6)
System\Windows\Forms\ControlTests.cs (1)
1248
public new void OnChangeUICues(
UICuesEventArgs
e) => base.OnChangeUICues(e);
System\Windows\Forms\ControlTests.Handlers.cs (1)
786
public void Control_OnChangeUICues_Invoke_CallsChangeUICues(
UICuesEventArgs
eventArgs)
System\Windows\Forms\ListBoxTests.cs (1)
6470
public new void OnChangeUICues(
UICuesEventArgs
e) => base.OnChangeUICues(e);
System\Windows\Forms\ToolStripDropDownTests.cs (2)
3688
public void ToolStripDropDown_OnChangeUICues_Invoke_CallsChangeUICues(
UICuesEventArgs
eventArgs)
5186
public new void OnChangeUICues(
UICuesEventArgs
e) => base.OnChangeUICues(e);
System\Windows\Forms\UICuesEventArgsTests.cs (1)
21
UICuesEventArgs
e = new(uicues);