如何:为 Windows 窗体 DataGridView 控件中的单个单元格添加工具提示

默认情况下,工具提示用于显示因太小而无法显示其全部内容的 DataGridView 单元格的值。 此行为也可改为设置各个单元格的工具提示文本值。 这对于向用户显示有关单元格的其他信息或向用户提供单元格内容的备用说明非常有用。 例如,如果具有显示状态图标的行,则可能需要使用工具提示提供文本说明。

还可以通过将 DataGridView.ShowCellToolTips 属性设置为 false 来禁止显示单元格级别的工具提示。

向单元格添加工具提示

  • 设置 DataGridViewCell.ToolTipText 属性。

    // Sets the ToolTip text for cells in the Rating column.
    void dataGridView1_CellFormatting(Object^ /*sender*/, 
        DataGridViewCellFormattingEventArgs^ e)
    {
        if ( (e->ColumnIndex == this->dataGridView1->Columns["Rating"]->Index)
            && e->Value != nullptr )
        {
            DataGridViewCell^ cell = 
                this->dataGridView1->Rows[e->RowIndex]->Cells[e->ColumnIndex];
            if (e->Value->Equals("*"))
            {                
                cell->ToolTipText = "very bad";
            }
            else if (e->Value->Equals("**"))
            {
                cell->ToolTipText = "bad";
            }
            else if (e->Value->Equals("***"))
            {
                cell->ToolTipText = "good";
            }
            else if (e->Value->Equals("****"))
            {
                cell->ToolTipText = "very good";
            }
        }
    }
    
    // Sets the ToolTip text for cells in the Rating column.
    void dataGridView1_CellFormatting(object sender,
        DataGridViewCellFormattingEventArgs e)
    {
        if ( (e.ColumnIndex == this.dataGridView1.Columns["Rating"].Index)
            && e.Value != null )
        {
            DataGridViewCell cell =
                this.dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex];
            if (e.Value.Equals("*"))
            {
                cell.ToolTipText = "very bad";
            }
            else if (e.Value.Equals("**"))
            {
                cell.ToolTipText = "bad";
            }
            else if (e.Value.Equals("***"))
            {
                cell.ToolTipText = "good";
            }
            else if (e.Value.Equals("****"))
            {
                cell.ToolTipText = "very good";
            }
        }
    }
    
    ' Sets the ToolTip text for cells in the Rating column.
    Sub dataGridView1_CellFormatting(ByVal sender As Object, _
        ByVal e As DataGridViewCellFormattingEventArgs) _
        Handles dataGridView1.CellFormatting
    
        If e.ColumnIndex = Me.dataGridView1.Columns("Rating").Index _
            AndAlso (e.Value IsNot Nothing) Then
    
            With Me.dataGridView1.Rows(e.RowIndex).Cells(e.ColumnIndex)
    
                If e.Value.Equals("*") Then
                    .ToolTipText = "very bad"
                ElseIf e.Value.Equals("**") Then
                    .ToolTipText = "bad"
                ElseIf e.Value.Equals("***") Then
                    .ToolTipText = "good"
                ElseIf e.Value.Equals("****") Then
                    .ToolTipText = "very good"
                End If
    
            End With
    
        End If
    
    End Sub
    

编译代码

  • 此示例需要:

  • 一个名为 dataGridView1DataGridView 控件,其中包含一个名为 Rating 的列,用于显示一到四个星号 ("*") 符号的字符串值。 控件的 CellFormatting 事件必须与示例中所示的事件处理程序方法相关联。

  • SystemSystem.Windows.Forms 程序集的引用。

可靠编程

DataGridView 控件绑定到外部数据源或通过实现虚拟模式提供自己的数据源时,可能会遇到性能问题。 若要避免在处理大量数据时出现性能损失,请处理 CellToolTipTextNeeded 事件,而不是设置多个单元格的 ToolTipText 属性。 处理此事件时,获取单元格 ToolTipText 属性的值会引发事件并返回事件处理程序中指定的 DataGridViewCellToolTipTextNeededEventArgs.ToolTipText 属性的值。

另请参阅