程序代码:
if (需要弹出提示) { this.toolTip1.IsBalloon = true; // 工具信息提示采用气球的形式 this.toolTip1.ToolTipTitle = "提示"; // 工具信息提示的標題 this.toolTip1.ToolTipIcon = ToolTipIcon.Info; // 工具信息提示的圖標 this.toolTip1.BackColor = System.Drawing.Color.Azure; // 工具信息提示的背景色 this.toolTip1.UseAnimation = true; // 工具信息提示顯示時合用動畫效果 this.toolTip1.UseFading = true; // 工具信息提示顯示時合用淡出效果 this.toolTip1.Show("发送内容不能为空,请重新输入!", txtSendBox, time); //txtSnedBox是你需要提示的那个文本框,time是提示框要显示的时间 }
这是C#的,你自己转换一下吧.
.
[[it] 本帖最后由 bygg 于 2008-12-16 11:37 编辑 [/it]]