■ NotificationWindow 클래스를 사용해 팝업 윈도우를 표시하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
using System.Windows; NotificationWindow notificationWindow = new NotificationWindow(); notificationWindow.Width = 300; notificationWindow.Height = 100; TextBlock textBlock = new TextBlock(); textBlock.FontSize = 24; textBlock.Text = "알림창 입니다."; notificationWindow.Content = textBlock; notificationWindow.Show(3000); // 3초간 표시 |
※ Out-Of-Browser 응용 프로그램에서 사용 가능하다.