4 instantiations of TableLayoutCellPaintEventArgs
System.Windows.Forms (1)
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutPanel.cs (1)
395
using (TableLayoutCellPaintEventArgs pcea =
new
(e, clipRect, insideCellBounds, i, j))
System.Windows.Forms.Tests (3)
System\Windows\Forms\TableLayoutCellPaintEventArgsTests.cs (2)
26
TableLayoutCellPaintEventArgs e =
new
(graphics, clipRectangle, cellBounds, column, row);
37
Assert.Throws<ArgumentNullException>("graphics", () => new
TableLayoutCellPaintEventArgs
(
System\Windows\Forms\TableLayoutPanelTests.cs (1)
1210
yield return new object[] { new
TableLayoutCellPaintEventArgs
(graphics, Rectangle.Empty, Rectangle.Empty, 0, 0) };
6 references to TableLayoutCellPaintEventArgs
System.Windows.Forms (3)
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutCellPaintEventHandler.cs (1)
6
public delegate void TableLayoutCellPaintEventHandler(object? sender,
TableLayoutCellPaintEventArgs
e);
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutPanel.cs (2)
325
protected virtual void OnCellPaint(
TableLayoutCellPaintEventArgs
e)
395
using (
TableLayoutCellPaintEventArgs
pcea = new(e, clipRect, insideCellBounds, i, j))
System.Windows.Forms.Tests (3)
System\Windows\Forms\TableLayoutCellPaintEventArgsTests.cs (1)
26
TableLayoutCellPaintEventArgs
e = new(graphics, clipRectangle, cellBounds, column, row);
System\Windows\Forms\TableLayoutPanelTests.cs (2)
1215
public void TableLayoutPanel_OnCellPaint_Invoke_CallsCellPaint(
TableLayoutCellPaintEventArgs
eventArgs)
2245
public new void OnCellPaint(
TableLayoutCellPaintEventArgs
e) => base.OnCellPaint(e);