|
btnShowToolTip.Click += BtnShowToolTip_Click;
private void BtnShowToolTip_Click(object sender, EventArgs e)
{
//Show the tooltip for header column
sfDataGrid.ShowHeaderToolTip = true;
//Show the tooltip for cell values
sfDataGrid.ShowToolTip = true;
} |