如何让 ToastNotification 在 Windows 10 IoT 上运行?(树莓派 2)。
ToastBindingGeneric binding = new ToastBindingGeneric();
binding.Children.Add(new AdaptiveText() { Text = "Foo" });
binding.Children.Add(new AdaptiveText() { Text = "Trying to do something here hello!!!" });
ToastContent content = new ToastContent()
{
Visual = new ToastVisual()
{
BindingGeneric = binding
}
};
ToastNotificationManager.CreateToastNotifier().Show(new ToastNotification(content.GetXml()));
我正在使用此代码,它使用 Microsoft UWP 社区工具包 ( https://github.com/Microsoft/UWPCommunityToolkit )。出于某种原因,它不会在 PI 上显示敬酒,但在 Windows 10 桌面上会显示。