前提・実現したいこと
コンソールアプリケーションでトースト通知を表示させたい
発生している問題
トースト通知が表示されない
通知ボックスの中にもない
Windows側の設定は通知を許可する設定になっていることを確認
該当のソースコード
C#
1using System; 2using Windows.UI.Notifications; 3 4namespace ConsoleApp2 5{ 6 class Program 7 { 8 static void Main(string[] args) 9 { 10 Console.WriteLine("Hello World!"); 11 12 var template = ToastNotificationManager.GetTemplateContent(ToastTemplateType.ToastText01); 13 14 var textNodes = template.GetElementsByTagName("text"); 15 textNodes.Item(0).InnerText = "I'm a toast notification!"; 16 17 var notifier = ToastNotificationManager.CreateToastNotifier("My .NET Core App"); 18 var notification = new ToastNotification(template); 19 notifier.Show(notification); 20 21 Console.ReadKey(); 22 } 23 } 24}
補足情報(FW/ツールのバージョンなど)
OS Windows10
VS2019
.net core 3.0
パッケージ
Microsoft.Windows.SDK.Contracts 10.0.18362.2005
回答1件
あなたの回答
tips
プレビュー