■ NotificationService 클래스를 사용해 토스트 알림(Toast Notification)을 표시하는 방법을 보여준다.
▶ MainWindow.xaml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
<Window x:Class="TestProject.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Width="800" Height="600" Title="NotificationService 클래스 : 토스트 알림(Toast Notification) 표시하기" FontFamily="나눔고딕코딩" FontSize="16"> <Grid> <Button Name="showToastNotificationButton" Width="200" Height="30" Content="토스트 알림 표시하기" /> </Grid> </Window> |
▶ MainWindow.xaml.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 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 |
using System; using System.ComponentModel; using System.Diagnostics; using System.Threading.Tasks; using System.Windows; using System.Windows.Media.Imaging; using DevExpress.Data; using DevExpress.Mvvm; using DevExpress.Mvvm.UI; namespace TestProject { /// <summary> /// 메인 윈도우 /// </summary> public partial class MainWindow : Window { //////////////////////////////////////////////////////////////////////////////////////////////////// Field ////////////////////////////////////////////////////////////////////////////////////////// Private #region Field /// <summary> /// 알림 서비스 /// </summary> private NotificationService service; /// <summary> /// 비트맵 이미지 /// </summary> private BitmapImage bitmapImage; #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - MainWindow() /// <summary> /// 생성자 /// </summary> public MainWindow() { InitializeComponent(); this.service = new NotificationService(); this.service.ApplicationId = "TestProject"; this.service.ApplicationName = "TestProject"; this.service.UseWin8NotificationsIfAvailable = true; this.service.CreateApplicationShortcut = true; this.service.PredefinedNotificationDuration = PredefinedNotificationDuration.Default; this.service.PredefinedNotificationTemplate = NotificationTemplate.ShortHeaderAndTwoTextFields; ShellHelper.TryCreateShortcut(this.service.ApplicationId, this.service.ApplicationName); Uri uri = GetResourceURI(null, "IMAGE/toast.png"); this.bitmapImage = new BitmapImage(uri); Closing += Window_Closing; this.showToastNotificationButton.Click += showToastNotificationButton_Click; } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Private //////////////////////////////////////////////////////////////////////////////// Event #region 윈도우 닫을 경우 처리하기 - Window_Closing(sender, e) /// <summary> /// 윈도우 닫을 경우 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void Window_Closing(object sender, CancelEventArgs e) { ShellHelper.TryRemoveShortcut(this.service.ApplicationName); } #endregion #region 토스트 알림 표시하기 버튼 클릭시 처리하기 - showToastNotificationButton_Click(sender, e) /// <summary> /// 토스트 알림 표시하기 버튼 클릭시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void showToastNotificationButton_Click(object sender, RoutedEventArgs e) { INotification notification = this.service.CreatePredefinedNotification ( "알림", "등록된 사용자가 아닙니다.", DateTime.Now.ToString(), this.bitmapImage ); notification.ShowAsync().ContinueWith(resultTask => ProcessToastNotificationClicked(resultTask, null)); } #endregion #region 토스트 알림 클릭시 처리하기 - ProcessToastNotificationClicked(resultTask, parameter) /// <summary> /// 토스트 알림 클릭시 처리하기 /// </summary> /// <param name="resultTask">결과 태스크</param> /// <param name="parameter">매개 변수</param> private void ProcessToastNotificationClicked(Task<NotificationResult> resultTask, object parameter) { NotificationResult result = resultTask.Result; switch(result) { case NotificationResult.Activated : Process.Start("https://icodebroker.tistory.com"); break; } } #endregion //////////////////////////////////////////////////////////////////////////////// Function #region 리소스 URI 구하기 - GetResourceURI(assemblyName, resourcePath) /// <summary> /// 리소스 URI 구하기 /// </summary> /// <param name="assemblyName">어셈블리명</param> /// <param name="resourcePath">리소스 경로</param> /// <returns>리소스 URI</returns> private Uri GetResourceURI(string assemblyName, string resourcePath) { if(string.IsNullOrEmpty(assemblyName)) { return new Uri($"pack://application:,,,/{resourcePath}"); } else { return new Uri($"pack://application:,,,/{assemblyName};component/{resourcePath}"); } } #endregion } } |