private void btnFindNext_Click(object sender, EventArgs e)
{
string strFind = tbFind.Text.Trim();
if (strFind.Length == 0)
{
this.toolTip1.IsBalloon = true; // 工具信息提示采用气球的形式
this.toolTip1.ToolTipTitle = "提示"; // 工具信息提示的標題
this.toolTip1.ToolTipIcon = ToolTipIcon.Info; // 工具信息提示的圖標
this.toolTip1.BackColor = System.Drawing.Color.Red; // 工具信息提示的背景色
this.toolTip1.UseAnimation = true; // 工具信息提示顯示時合用動畫效果
this.toolTip1.UseFading = true; // 工具信息提示顯示時合用淡出效果
this.toolTip1.Show("請先輸入要查詢的內容!", tbFind);
tbFind.Focus();
tbFind.Select();
return;
}
bool useMatch = chkUseMatch.Checked;
Common.Find(this.dgv, strFind, useMatch);
}
[此贴子已经被作者于2007-3-20 23:32:37编辑过]