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;

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM