| | |
| | | private static AlertControl Alert |
| | | { |
| | | get |
| | | { |
| | | { |
| | | if (_alert == null) |
| | | { |
| | | _alert = new AlertControl(); |
| | | //_alert.FormMaxCount = 1; |
| | | _alert.AutoFormDelay = 5 * 1000; |
| | | _alert.AutoFormDelay = 2 * 1000; |
| | | _alert.AutoHeight = true; |
| | | } |
| | | return _alert; |
| | |
| | | /// <param name="text"></param> |
| | | public static void ShowInfo(Form owner, string caption, string text) |
| | | { |
| | | DevExpress.XtraBars.Alerter.AlertInfo info = new DevExpress.XtraBars.Alerter.AlertInfo(caption, text); |
| | | DevExpress.XtraBars.Alerter.AlertInfo info = new DevExpress.XtraBars.Alerter.AlertInfo(caption, text); |
| | | AlertTool.Alert.Show(owner, info); |
| | | } |
| | | |