0
如何在DataGridView
中添加單元格註釋?我需要在網格中評論我的值。如何將描述添加到DataGridView單元格
如何在DataGridView
中添加單元格註釋?我需要在網格中評論我的值。如何將描述添加到DataGridView單元格
設置在任DataGridViewCell
或DataGridViewColumn
任何你想要的文字ToolTipText
財產。
每個小區可以具有通過設置該單元的the .ToolTipText
property的工具提示。事情是這樣的:
// Event for formatting cells when rendering the grid
void dataGridView1_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e)
{
// Some logic for determining which cell this is in the row
if ((e.ColumnIndex == this.dataGridView1.Columns["SomeColumn"].Index))
{
// Get a reference to the cell
DataGridViewCell cell = this.dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex];
// Set the tooltip text
cell.ToolTipText = "some text";
}
}