DevExpress control library ---- AlertControl prompt control, devexpress paging Control
The AlertControl control can display a prompt to the user! A personalized window is displayed.
Easy to use: the pop-up window is displayed:
This. alertControl1.Show (this, "prompt! "," You have a message! ");
Simple Property setting: Set the display position of the proposed window
This. alertControl1.FormLocation = DevExpress. xtraBars. alerter. alertFormLocation. bottomRight; // Summary: // Contains values that specify the position on screen at which alert windows // are displayed. public enum AlertFormLocation {// Abstract: // An alert window appears at the top left corner of the screen. topLeft = 0, /// Abstract: // An alert window appears at the top right corner of the screen. topRight = 1, /// Abstract: // An alert window appears at the bottom left corner of the screen. bottomLeft = 2, /// Abstract: // An alert window appears at the bottom right corner of the screen. bottomRight = 3 ,}
Set the display time window to automatically close:
// This. alertControl1.AutoFormDelay = 7000 in milliseconds;
Set the effect mode and speed for a Single Window:
// Method of effect this. identifier = DevExpress. XtraBars. Alerter. identifier. FadeIn; // the pop-up speed this. alertControl1.FormDisplaySpeed = DevExpress. XtraBars. Alerter. AlertFormDisplaySpeed. Fast;