■ AlertControl 클래스를 사용해 알림 창을 표시하는 방법을 보여준다.
▶ Message.cs
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 |
using System.Drawing; namespace TestProject { /// <summary> /// 메시지 /// </summary> public class Message { //////////////////////////////////////////////////////////////////////////////////////////////////// Property ////////////////////////////////////////////////////////////////////////////////////////// Public #region 이미지 - Image /// <summary> /// 이미지 /// </summary> public Image Image { get; set; } #endregion #region 제목 - Caption /// <summary> /// 제목 /// </summary> public string Caption { get; set; } #endregion #region 내용 - Content /// <summary> /// 내용 /// </summary> public string Content { get; set; } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - Message() /// <summary> /// 생성자 /// </summary> public Message() { Image = global::TestProject.Properties.Resources.opportunities_32x32; Caption = "LILA-Supermercado"; Content = "Carrera 52 con Ave. Bolívar #65-98 Llano Largo"; } #endregion } } |
▶ MainForm.cs
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 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 |
using System; using System.Windows.Forms; using DevExpress.XtraBars.Alerter; using DevExpress.XtraEditors; namespace TestProject { /// <summary> /// 메인 폼 /// </summary> public partial class MainForm : Form { //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - MainForm() /// <summary> /// 생성자 /// </summary> public MainForm() { InitializeComponent(); this.alertControl.AlertClick += alertControl_AlertClick; this.alertControl.BeforeFormShow += alertControl_BeforeFormShow; this.showButton.Click += showButton_Click; } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Private //////////////////////////////////////////////////////////////////////////////// Event #region 알림 컨트롤 폼 표시 전 처리하기 - alertControl_BeforeFormShow(sender, e) /// <summary> /// 알림 컨트롤 폼 표시 전 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void alertControl_BeforeFormShow(object sender, AlertFormEventArgs e) { e.AlertForm.OpacityLevel = 1; } #endregion #region 알림 컨트롤 알림 클릭시 처리하기 - alertControl_AlertClick(sender, e) /// <summary> /// 알림 컨트롤 알림 클릭시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void alertControl_AlertClick(object sender, AlertClickEventArgs e) { Message message = e.Info.Tag as Message; XtraMessageBox.Show(message.Content, message.Caption); } #endregion #region 알림 창 표시하기 버튼 클릭시 처리하기 - showButton_Click(sender, e) /// <summary> /// 알림 창 표시하기 버튼 클릭시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void showButton_Click(object sender, EventArgs e) { Message message = new Message(); this.alertControl.Show(this, message.Caption, message.Content, string.Empty, message.Image, message); } #endregion } } |