TableLayoutPanel.CellPaint Событие
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Происходит при перерисовке ячейки.
public:
event System::Windows::Forms::TableLayoutCellPaintEventHandler ^ CellPaint;
public event System.Windows.Forms.TableLayoutCellPaintEventHandler CellPaint;
public event System.Windows.Forms.TableLayoutCellPaintEventHandler? CellPaint;
member this.CellPaint : System.Windows.Forms.TableLayoutCellPaintEventHandler
Public Custom Event CellPaint As TableLayoutCellPaintEventHandler
Тип события
Примеры
В следующем примере кода показано использование этого элемента. В этом примере обработчик событий сообщает о возникновении CellPaint события. Этот отчет поможет вам узнать, когда происходит событие, и поможет вам в отладке.
Чтобы выполнить пример кода, вставьте его в проект, содержащий экземпляр типа TableLayoutPanel с именем TableLayoutPanel1
. Затем убедитесь, что обработчик событий связан с событием CellPaint .
private void TableLayoutPanel1_CellPaint(Object sender, TableLayoutCellPaintEventArgs e) {
System.Text.StringBuilder messageBoxCS = new System.Text.StringBuilder();
messageBoxCS.AppendFormat("{0} = {1}", "CellBounds", e.CellBounds );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "Row", e.Row );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "Column", e.Column );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "ClipRectangle", e.ClipRectangle );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "Graphics", e.Graphics );
messageBoxCS.AppendLine();
MessageBox.Show(messageBoxCS.ToString(), "CellPaint Event" );
}
Private Sub TableLayoutPanel1_CellPaint(sender as Object, e as TableLayoutCellPaintEventArgs) _
Handles TableLayoutPanel1.CellPaint
Dim messageBoxVB as New System.Text.StringBuilder()
messageBoxVB.AppendFormat("{0} = {1}", "CellBounds", e.CellBounds)
messageBoxVB.AppendLine()
messageBoxVB.AppendFormat("{0} = {1}", "Row", e.Row)
messageBoxVB.AppendLine()
messageBoxVB.AppendFormat("{0} = {1}", "Column", e.Column)
messageBoxVB.AppendLine()
messageBoxVB.AppendFormat("{0} = {1}", "ClipRectangle", e.ClipRectangle)
messageBoxVB.AppendLine()
messageBoxVB.AppendFormat("{0} = {1}", "Graphics", e.Graphics)
messageBoxVB.AppendLine()
MessageBox.Show(messageBoxVB.ToString(),"CellPaint Event")
End Sub
Комментарии
Дополнительные сведения об обработке событий см. в разделе Обработка и вызов событий.