Windows 8 Store Apps】的更多相关文章

[源码下载][重新想象 Windows 8.1 Store Apps 系列文章] 重新想象 Windows 8 Store Apps 系列文章索引 作者:webabcd 1.重新想象 Windows 8 Store Apps (1) - 控件之文本控件: TextBlock, TextBox, PasswordBox, RichEditBox, RichTextBlock, RichTextBlockOverflow 介绍 重新想象 Windows 8 Store Apps 之 控件 TextB…
[源码下载] 重新想象 Windows 8 Store Apps (34) - 通知: Toast Demo, Tile Demo, Badge Demo 作者:webabcd 介绍重新想象 Windows 8 Store Apps 之 通知 Toast - 通知的应用 Tile - 瓷贴的应用 Badge - 徽章的应用 Badge - 轮询服务端以更新 Badge 通知 示例1.演示 toast 的基本应用Notification/Toast/Demo.xaml <Page x:Class=…
[源码下载] 重新想象 Windows 8 Store Apps (35) - 通知: Toast 详解 作者:webabcd 介绍重新想象 Windows 8 Store Apps 之 通知 Toast - 基本应用参见 http://www.cnblogs.com/webabcd/archive/2013/06/17/3139740.html Toast - 纯文本 toast Toast - 图文 toast Toast - toast 的提示音 Toast - 按计划弹出 toast 示…
[源码下载] 重新想象 Windows 8 Store Apps (36) - 通知: Tile 详解 作者:webabcd 介绍重新想象 Windows 8 Store Apps 之 通知 Tile - 基本应用参见 http://www.cnblogs.com/webabcd/archive/2013/06/17/3139740.html Tile - 全部 Tile 模板 Tile - 在一个 Tile 上循环显示多个 TileNotification Tile - 一个 app 多个 T…
[源码下载] 重新想象 Windows 8 Store Apps (37) - 契约: Settings Contract 作者:webabcd 介绍重新想象 Windows 8 Store Apps 之 契约 Settings Contract - 右侧边栏称之为 Charm,其中的“设置”称之为 Settings Contract 示例演示 Settings Contract 的应用Contracts/SettingsContract/Demo.xaml <Page x:Class="…
[源码下载] 重新想象 Windows 8 Store Apps (38) - 契约: Search Contract 作者:webabcd 介绍重新想象 Windows 8 Store Apps 之 契约 Search Contract - 右侧边栏称之为 Charm, 其中的“搜索”称之为 Search Contract 使用 Search Contract 的搜索建议,数据源在本地,以及从输入法编辑器中获取相关信息 使用 Search Contract 的搜索建议,数据源在服务端,以及为搜…
[源码下载] 重新想象 Windows 8 Store Apps (39) - 契约: Share Contract 作者:webabcd 介绍重新想象 Windows 8 Store Apps 之 契约 Share Contract - 右侧边栏称之为 Charm,其中的“共享”称之为 Share Contract 示例1.演示如何开发共享源Contracts/ShareContract/ShareSource.xaml <Page x:Class="XamlDemo.Contracts…
[源码下载] 重新想象 Windows 8 Store Apps (40) - 剪切板: 复制/粘贴文本, html, 图片, 文件 作者:webabcd 介绍重新想象 Windows 8 Store Apps 之 剪切板 Clipboard - 剪切板 复制/粘贴文本 复制/粘贴html 复制/粘贴图片 复制/粘贴文件 示例1.演示剪切板的基本应用Clipboard/Demo.xaml <Page x:Class="XamlDemo.Clipboard.Demo" xmlns=…
[源码下载] 重新想象 Windows 8 Store Apps (41) - 打印 作者:webabcd 介绍重新想象 Windows 8 Store Apps 之 打印 示例1.需要打印的文档Print/PrintPage.xaml <Page x:Class="XamlDemo.Print.PrintPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:…
[源码下载] 重新想象 Windows 8 Store Apps (42) - 多线程之线程池: 延迟执行, 周期执行, 在线程池中找一个线程去执行指定的方法 作者:webabcd 介绍重新想象 Windows 8 Store Apps 之 线程池 通过 ThreadPoolTimer 实现延迟执行 通过 ThreadPoolTimer 实现周期执行 通过 ThreadPool 实现“在线程池中找一个线程去执行指定的方法” 示例1.通过 ThreadPoolTimer 实现延迟执行(Thread…