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)
28
TableLayoutCellPaintEventArgs e =
new
(graphics, clipRectangle, cellBounds, column, row);
39
Assert.Throws<ArgumentNullException>("graphics", () => new
TableLayoutCellPaintEventArgs
(
System\Windows\Forms\TableLayoutPanelTests.cs (1)
1212
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)
28
TableLayoutCellPaintEventArgs
e = new(graphics, clipRectangle, cellBounds, column, row);
System\Windows\Forms\TableLayoutPanelTests.cs (2)
1217
public void TableLayoutPanel_OnCellPaint_Invoke_CallsCellPaint(
TableLayoutCellPaintEventArgs
eventArgs)
2247
public new void OnCellPaint(
TableLayoutCellPaintEventArgs
e) => base.OnCellPaint(e);