private void AdjustCells()
{
int j = this.dg_SMB.PageSize * (this.dg_SMB.CurrentPageIndex+1);
int k = this.smb.Rows.Count;
for(int i=(j-10);i<((j<k)?j:k);i++)
{
this.dg_SMB.Items[i%10].Cells[6].ToolTip = this.smb.Rows[i][6].ToString();

}
}private void btn_query_Click(object sender, System.EventArgs e)
{
        //其它代码
this.dg_SMB.DataBind();         this.AdjustCells();
                  }为什么Tooltip没有显示  而要点击后才显示呢?另外我的this.dg_SMB.ItemDataBound += new DataGridItemEventHandler(this.changeRowColor);这个有影响吗?