欢迎访问 生活随笔!

生活随笔

当前位置: 首页 > 编程资源 > 编程问答 >内容正文

编程问答

DevExpress控件库----AlertControl提示控件

发布时间:2024/7/19 编程问答 42 豆豆
生活随笔 收集整理的这篇文章主要介绍了 DevExpress控件库----AlertControl提示控件 小编觉得挺不错的,现在分享给大家,帮大家做个参考.

AlertControl控件可以在给用户弹出提示信息时!能够很好的弹出个性化的窗口。

 

简单易用:此时弹出窗口:

 

this.alertControl1.Show(this, "提示!", "您有一条消息!");

简单属性设置:设置提出窗口的显示的位置

this.alertControl1.FormLocation = DevExpress.XtraBars.Alerter.AlertFormLocation.BottomRight;// 摘要: // Contains values that specify the position on screen at which alert windows// are displayed.public enum AlertFormLocation{// 摘要: // An alert window appears at the top left corner of the screen.TopLeft = 0,//// 摘要: // An alert window appears at the top right corner of the screen.TopRight = 1,//// 摘要: // An alert window appears at the bottom left corner of the screen.BottomLeft = 2,//// 摘要: // An alert window appears at the bottom right corner of the screen.BottomRight = 3,}

设置显示多少时间窗口会自动关闭:

//以毫秒为单位this.alertControl1.AutoFormDelay = 7000;

设置单窗口出现的效果方式 和 速度:

//出现的效果方式this.alertControl1.FormShowingEffect = DevExpress.XtraBars.Alerter.AlertFormShowingEffect.FadeIn;//弹出的速度this.alertControl1.FormDisplaySpeed = DevExpress.XtraBars.Alerter.AlertFormDisplaySpeed.Fast;

 

转载于:https://www.cnblogs.com/xieyong_198510/p/4689129.html

总结

以上是生活随笔为你收集整理的DevExpress控件库----AlertControl提示控件的全部内容,希望文章能够帮你解决所遇到的问题。

如果觉得生活随笔网站内容还不错,欢迎将生活随笔推荐给好友。