Base:
method
PaintUp
System.Windows.Forms.ButtonInternal.ButtonBaseAdapter.PaintUp(System.Windows.Forms.PaintEventArgs, System.Windows.Forms.CheckState)
7 references to PaintUp
System.Windows.Forms (3)
System\Windows\Forms\Controls\Buttons\ButtonInternal\ButtonFlatAdapter.cs (1)
206PaintUp(e, state);
System\Windows\Forms\Controls\Buttons\ButtonInternal\CheckBoxFlatAdapter.cs (1)
54ButtonAdapter.PaintUp(e, Control.CheckState);
System\Windows\Forms\Controls\Buttons\ButtonInternal\RadioButtonFlatAdapter.cs (1)
57adapter.PaintUp(e, Control.Checked ? CheckState.Checked : CheckState.Unchecked);
System.Windows.Forms.Tests (4)
System\Windows\Forms\ButtonFlatAdapterTests.cs (4)
50Exception? exception = Record.Exception(() => buttonFlatAdapter.PaintUp(e, state)); 91Exception? exception = Record.Exception(() => buttonFlatAdapter.PaintUp(e, state)); 139Exception? exception = Record.Exception(() => buttonFlatAdapter.PaintUp(e, state)); 155Exception? exception = Record.Exception(() => buttonFlatAdapter.PaintUp(e, CheckState.Unchecked));