[源码下载] 背水一战 Windows 10 (103) - 通知(Toast): 基础, 按计划显示 toast 通知 作者:webabcd 介绍背水一战 Windows 10 之 通知(Toast) 基础 按计划显示 toast 通知 示例1.本例用于演示当通过 toast 激活 app 时(前台方式激活),如何获取相关信息Notification/Toast/Demo.xaml <Page x:Class="Windows10.Notification.Toast.Demo"…
[源码下载] 背水一战 Windows 10 (110) - 通知(Tile): secondary tile 模板之基础, secondary tile 模板之文本 作者:webabcd 介绍背水一战 Windows 10 之 通知(Tile) secondary tile 模板之基础 secondary tile 模板之文本 示例1.本例用于演示 tile 显示模板的基础Notification/Tile/TemplateBasic.xaml <Page x:Class="Window…
[源码下载] 背水一战 Windows 10 (109) - 通知(Tile): 按计划显示 tile 通知, 轮询服务端以更新 tile 通知 作者:webabcd 介绍背水一战 Windows 10 之 通知(Tile) 按计划显示 tile 通知 轮询服务端以更新 tile 通知 示例1.演示如何按计划显示 tile 通知(在指定的时间显示指定的 tile 通知,此特性在 application tile 和 secondary tile 中均支持)Notification/Tile/Sc…
[源码下载] 背水一战 Windows 10 (108) - 通知(Tile): application tile 基础, secondary tile 基础 作者:webabcd 介绍背水一战 Windows 10 之 通知(Tile) application tile 基础 secondary tile 基础 示例1.本例用于演示 application tile 的基础Notification/Tile/ApplicationTileBasic.xaml <Page x:Class="…
[源码下载] 背水一战 Windows 10 (107) - 通知(Toast): 提示音, 特定场景 作者:webabcd 介绍背水一战 Windows 10 之 通知(Toast) 提示音 特定场景 示例1.本例用于演示 toast 的提示音Notification/Toast/Audio.xaml <Page x:Class="Windows10.Notification.Toast.Audio" xmlns="http://schemas.microsoft.c…
[源码下载] 背水一战 Windows 10 (106) - 通知(Toast): 通过 toast 打开协议, 通过 toast 选择在指定的时间之后延迟提醒或者取消延迟提醒 作者:webabcd 介绍背水一战 Windows 10 之 通知(Toast) 通过 toast 打开协议 通过 toast 选择在指定的时间之后延迟提醒或者取消延迟提醒 示例1.本例用于演示如何通过 toast 打开指定的协议Notification/Toast/LaunchProtocol.xaml <Page x…
[源码下载] 背水一战 Windows 10 (105) - 通知(Toast): 带按钮的 toast, 带输入的 toast(文本输入框,下拉选择框) 作者:webabcd 介绍背水一战 Windows 10 之 通知(Toast) 带按钮的 toast 带输入的 toast(文本输入框,下拉选择框) 示例1.本例用于演示如何弹出带按钮的 toastNotification/Toast/ActionButton.xaml <Page x:Class="Windows10.Notific…
[源码下载] 背水一战 Windows 10 (104) - 通知(Toast): 纯文本 toast, 短时 toast, 长时 toast, 图文 toast 作者:webabcd 介绍背水一战 Windows 10 之 通知(Toast) 纯文本 toast 短时 toast 长时 toast 图文 toast 示例1.本例用于演示如何弹出纯文本 toast,以及如何控制 toast 的显示时长(短时和长时两种)Notification/Toast/Text.xaml <Page x:Cl…
[源码下载] 背水一战 Windows 10 (121) - 后台任务: 推送通知 作者:webabcd 介绍背水一战 Windows 10 之 后台任务 推送通知 示例演示如何接收推送通知/WebApi/PushNotificationController.cs /* * 演示如何向 app 推送通知 * 由于本例没有上商店,所以本例是无法演示的,需要看演示效果的话运行一下自己写的“打字通”的 /TypingGame/PushNotification/Sample.xaml,然后用其生成的 c…
[源码下载] 背水一战 Windows 10 (118) - 后台任务: 后台下载任务(任务分组,并行或串行执行,组完成后通知) 作者:webabcd 介绍背水一战 Windows 10 之 后台任务 后台下载任务(任务分组,并行或串行执行,组完成后通知) 示例演示后台下载任务的分组,以及如何设置组内任务是并行执行还是串行执行,以及组任务全部完成后如何 toast 或 tile 通知)BackgroundTask/TransferModel.cs /* * 扩展了 DownloadOperati…