0

のセルにコメントを追加するにはDataGridView? グリッドで自分の値をコメントする必要があります。

DataGridViewのセルにコメントを追加するには?  グリッドの値にコメントする必要があります

4

2 に答える 2

2

各セルは、そのセル.ToolTipTextプロパティを設定することでツールチップを持つことができます。このようなもの:

// 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";
    }
}
于 2013-10-03T14:40:51.907 に答える
2

または任意のテキストにToolTipTextプロパティを設定します。DataGridViewCellDataGridViewColumn

于 2013-10-03T14:40:56.203 に答える