[C#/WPF/DEVEXPRESS] NotificationService 클래스 : 커스텀 토스트 알림(Toast Notification) 표시하기
■ NotificationService 클래스를 사용해 커스텀 토스트 알림(Toast Notification)을 표시하는 방법을 보여준다. ▶ NotificationModel.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 |
using System.Windows; namespace TestProject { /// <summary> /// 알림 모델 /// </summary> public class NotificationModel : DependencyObject { //////////////////////////////////////////////////////////////////////////////////////////////////// Dependency Property ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Public #region 제목 속성 - CaptionProperty /// <summary> /// 제목 속성 /// </summary> public static readonly DependencyProperty CaptionProperty = DependencyProperty.Register ( "Caption", typeof(string), typeof(NotificationModel), new PropertyMetadata(string.Empty) ); #endregion #region 내용 속성 - ContentProperty /// <summary> /// 내용 속성 /// </summary> public static readonly DependencyProperty ContentProperty = DependencyProperty.Register ( "Content", typeof(string), typeof(NotificationModel), new PropertyMetadata(string.Empty) ); #endregion #region 시간 속성 - TimeProperty /// <summary> /// 시간 속성 /// </summary> public static readonly DependencyProperty TimeProperty = DependencyProperty.Register ( "Time", typeof(string), typeof(NotificationModel), new PropertyMetadata(string.Empty) ); #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Property ////////////////////////////////////////////////////////////////////////////////////////// Public #region 제목 - Caption /// <summary> /// 제목 /// </summary> public string Caption { get { return (string)GetValue(CaptionProperty); } set { SetValue(CaptionProperty, value); } } #endregion #region 내용 - Content /// <summary> /// 내용 /// </summary> public string Content { get { return (string)GetValue(ContentProperty); } set { SetValue(ContentProperty, value); } } #endregion #region 시간 - Time /// <summary> /// 시간 /// </summary> public string Time { get { return (string)GetValue(TimeProperty); } set { SetValue(TimeProperty, value); } } #endregion } } |
▶ MainWindow.xaml
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 |
<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"> <Window.Resources> <DataTemplate x:Key="CustomDataTemplateKey"> <Border BorderThickness="1" BorderBrush="Black" Background="DarkBlue"> <StackPanel HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Orientation="Vertical"> <TextBlock Margin="5" HorizontalAlignment="Left" Foreground="White" FontFamily="SegoeUI" FontSize="20" FontWeight="Bold" Text="{Binding Caption}" /> <TextBlock Margin="3" HorizontalAlignment="Center" Foreground="LightGray" FontFamily="SegoeUI" FontSize="16" Text="{Binding Content}" /> <TextBlock Margin="3" HorizontalAlignment="Right" Foreground="Gray" FontFamily="SegoeUI" FontSize="14" Text="{Binding Time}" /> </StackPanel> </Border> </DataTemplate> </Window.Resources> <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 |
using System; using System.ComponentModel; using System.Diagnostics; using System.Threading.Tasks; using System.Windows; 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; #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - MainWindow() /// <summary> /// 생성자 /// </summary> public MainWindow() { InitializeComponent(); DataTemplate template = FindResource("CustomDataTemplateKey") as DataTemplate; this.service = new NotificationService(); this.service.ApplicationId = "TestProject"; this.service.ApplicationName = "TestProject"; this.service.UseWin8NotificationsIfAvailable = true; this.service.CreateApplicationShortcut = true; this.service.CustomNotificationTemplate = template; this.service.CustomNotificationDuration = TimeSpan.FromSeconds(1); this.service.CustomNotificationPosition = NotificationPosition.BottomRight; this.service.CustomNotificationVisibleMaxCount = 10; ShellHelper.TryCreateShortcut(this.service.ApplicationId, this.service.ApplicationName); Closing += Window_Closing; this.showToastNotificationButton.Click += showToastNotificationButton_Click; } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Private #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) { NotificationModel model = new NotificationModel(); model.Caption = "알림"; model.Content = "등록된 사용자가 없습니다."; model.Time = $"시각 : {DateTime.Now}"; INotification notification = this.service.CreateCustomNotification(model); 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 } } |
TestProject.zip