private void SimpleNotificationButton_Click(object sender, RoutedEventArgs e)
{
// NotificationWindow 개체로 간단 공지 창 띄우기
NotificationWindow notify = new NotificationWindow();
notify.Width = 329;
notify.Height = 74;
TextBlock tb = new TextBlock();
tb.Text = "간단 공지창 띄우기";
tb.FontSize = 24;
notify.Content = tb;
notify.Show(3000); // 오른쪽 하단에 떠 있는 시간
}
아래와 같이 Custom Notification Window를 만들 수도 있다.