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