0

我想以编程方式将工具提示设置为在DataGridView. 我试图使用AutoGeneratingColumn事件(http://msdn.microsoft.com/en-us/library/cc903950%28VS.95%29.aspx),但实际上只能访问DataGridColumn,不能访问,DataGridViewColumn而前者不能有财产ToolTipText

或者,如果我可以将工具提示绑定到一个也很棒的源。目标是能够在我为底层设置列的同一位置操作/设置工具提示DataTable

4

2 回答 2

1

我设法以这种方式解决它:

void payloadDataGrid_AutoGeneratingColumn(object sender, DataGridAutoGeneratingColumnEventArgs e)
{
    string tooltip = null;

    switch (e.Column.Header.ToString())
    {
        case "Column 1":
            tooltip = "Tooltip 1";
            break;
        case "Column 2":
            tooltip = "Tooltip 2";
            break;
    }

    if (tooltip != null)
    {
        var style = new Style(typeof(DataGridCell));
        style.Setters.Add(new Setter(ToolTipService.ToolTipProperty, tooltip));
        e.Column.CellStyle = style;
    }
}
于 2013-09-09T14:12:20.480 回答
0

特定单元格的工具提示文本:

DataGridView1.Rows[3].Cells["colnameX"].ToolTipText = " hover and see me";

将工具提示添加到动态添加的行特定单元格

private void DataGridView1_RowsAdded(object sender, DataGridViewRowsAddedEventArgs e)
{
    for (int index = e.RowIndex; index <= e.RowIndex + e.RowCount - 1; index++)                           
    {
        DataGridViewRow row = DataGridView1.Rows[index];
        row.Cells["colnameX"].ToolTipText = " hover and see me";

    }
}
于 2016-03-02T06:48:52.983 回答