0

如何让 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 桌面上会显示。

4

1 回答 1

3

Toast Notifications 需要 shell 才能运行。但是,目前,Windows IOTCore 没有外壳,因此不支持 toast 通知。同样,也不支持文件选择器、徽章通知、磁贴和任何其他需要外壳的功能。

于 2018-06-04T22:51:50.327 回答