из пространства имен Microsoft.Toolkit.Uwp.Notifications, вот мой код:
Код: Выделить всё
using Microsoft.Toolkit.Uwp.Notifications;
namespace cs
{
class Program
{
static void Main(string[] args)
{
new ToastContentBuilder ()
.AddArgument("action","hello")
.AddText("my first try in csharp)")
.Show();
}
}
Подробнее здесь: https://stackoverflow.com/questions/673 ... n-for-show