toast message
-
WPF 에서 toast 메시지 만들기C#/WPF 2016. 12. 5. 14:49
안드로이드에는 알림창으로 toast 메시지가 있습니다. 하지만 wpf에서는 윈도우 메시지 같은 형식밖에 없는데요, Label과 DoubleAnimation을 이용하여 toast 메시지와 비슷한 형식을 만들어 보았습니다. using System.Windows.Media.Animation; private void ToastMessage(string message){lblToast.Content = message; DoubleAnimation dba1 = new DoubleAnimation();dba1.From = 0;dba1.To = 1;dba1.Duration = new Duration(TimeSpan.FromSeconds(1.5)); DoubleAnimation dba2 = new DoubleAnimat..