TableLayoutPanel.OnCellPaint(TableLayoutCellPaintEventArgs) Метод

Определение

Получает вызов, когда необходимо обновить ячейку.

protected virtual void OnCellPaint (System.Windows.Forms.TableLayoutCellPaintEventArgs e);

Параметры

e
TableLayoutCellPaintEventArgs

Объект TableLayoutCellPaintEventArgs, предоставляющий данные для события.

Примеры

В следующем примере кода показано, как переопределить OnCellPaint метод для создания пользовательского внешнего вида для ячейки.

public class DemoTableLayoutPanel : TableLayoutPanel
{
    protected override void OnCellPaint(TableLayoutCellPaintEventArgs e)
    {
        base.OnCellPaint(e);

        Control c = this.GetControlFromPosition(e.Column, e.Row);

        if ( c != null )
        {
            Graphics g = e.Graphics;

            g.DrawRectangle(
                Pens.Red, 
                e.CellBounds.Location.X+1,
                e.CellBounds.Location.Y + 1,
                e.CellBounds.Width - 2, e.CellBounds.Height - 2);

            g.FillRectangle(
                Brushes.Blue, 
                e.CellBounds.Location.X + 1, 
                e.CellBounds.Location.Y + 1, 
                e.CellBounds.Width - 2, 
                e.CellBounds.Height - 2);
        };
    }
}

Применяется к

Продукт Версии
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
Windows Desktop 3.0, 3.1, 5, 6, 7