- 积分
- 352
- 在线时间
- 183 小时
- 主题
- 22
- 注册时间
- 2016-9-10
- 帖子
- 142
- 最后登录
- 2022-9-21
- 帖子
- 142
- 软币
- 1717
- 在线时间
- 183 小时
- 注册时间
- 2016-9-10
|
this.toolTipController1.AutoPopDelay = 2000;
ToolTipControllerShowEventArgs args = this.toolTipController1.CreateShowArgs();
this.toolTipController1.SetToolTip(this.button1, "请选择一条记录!");
this.toolTipController1.SetTitle(this.button1, "提示");
this.toolTipController1.SetToolTipIconType(this.button1, DevExpress.Utils.ToolTipIconType.Exclamation);
this.toolTipController1.ShowBeak = true;
this.toolTipController1.ShowShadow = true;
this.toolTipController1.Rounded = true;
this.toolTipController1.ShowHint("请选择一条记录!", "提示");
args.ToolTip = "请选择一条记录!";
args.Title = "提示";
return;
用的控件是toolTipController
|
-
效果如上
|