You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

41 lines
1000 B

  1. using System;
  2. namespace CI.WSANative.Notification
  3. {
  4. public static class WSAScheduledNotifications
  5. {
  6. public static void CancelAllNotifications()
  7. {
  8. WSAScheduledNotifications.CancelAllToastNotifications();
  9. WSAScheduledNotifications.ClearAllTileNotifications();
  10. WSAScheduledNotifications.CancelAllTileNotifications();
  11. }
  12. public static void ScheduleToastNotification(string text, DateTime deliveryTime, Uri image = null)
  13. {
  14. }
  15. public static void CancelAllToastNotifications()
  16. {
  17. }
  18. public static void ScheduleTileNotification(string text, DateTime deliveryTime)
  19. {
  20. }
  21. private static void CancelAllTileNotifications()
  22. {
  23. }
  24. private static void ClearAllTileNotifications()
  25. {
  26. }
  27. private const string PeekLogoWide = "ms-appx:///Assets/Wide310x150Logo.png";
  28. private const string PeekLogoSquare = "ms-appx:///Assets/Square150x150Logo.png";
  29. private const string SmallLogo = "ms-appx:///Assets/Square44x44Logo.png";
  30. }
  31. }