■ AlertControl 클래스에서 경고 창에 커스텀 버튼을 추가하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
using DevExpress.XtraBars.Alerter; ... private AlertControl alertControl; ... AlertButton openAlertButton = new AlertButton(Image.FromFile(@"c:\folder_16x16.png")); openAlertButton.Name = "openAlertButton"; openAlertButton.Hint = "Open File"; AlertButton alertAlertButton = new AlertButton(Image.FromFile(@"c:\clock_16x16.png")); alertAlertButton.Name = "alertAlertButton"; alertAlertButton.Style = AlertButtonStyle.CheckButton; alertAlertButton.Down = true; alertAlertButton.Hint = "Alert On"; this.alertControl.Buttons.Add(openAlertButton ); this.alertControl.Buttons.Add(alertAlertButton); this.alertControl.ButtonClick += alertControl_ButtonClick; this.alertControl.ButtonDownChanged += alertControl_ButtonDownChanged; AlertInfo alertInfo = new AlertInfo("New Window", "Text"); this.alertControl.Show(this, alertInfo); ... #region 경고 컨트롤 버튼 DOWN 변경시 처리하기 - alertControl_ButtonDownChanged(sender, e) /// <summary> /// 경고 컨트롤 버튼 DOWN 변경시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void alertControl_ButtonDownChanged(object sender, AlertButtonDownChangedEventArgs e) { if(e.ButtonName == "openAlertButton") { ... } } #endregion #region 경고 컨트롤 버튼 클릭시 처리하기 - alertControl_ButtonClick(sender, e) /// <summary> /// 경고 컨트롤 버튼 클릭시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void alertControl_ButtonClick(object sender, AlertButtonClickEventArgs e) { if(e.ButtonName == "alertAlertButton") { ... } } #endregion |