welcome to Qijie's Blog 薛其杰
07 2015 档案
alt text 与 tooltip区别
摘要:在做工具的Accessiblity测试时, 对于image对象,一直分不清它的alt属性与tooltip属性的区别与用法, 从网上查了下, 比较认同这样的观点:alt属性: alternative text, 是在浏览器不能显示图像的时候用来代替图像而显示的文字。本质上讲,用户看到的要么是图像,要么... 阅读全文
posted @ 2015-07-06 10:56 零点零一 阅读(629) 评论(0) 推荐(0)
IFrame 获取内容
摘要:试试:iframe.contentwindow.document.documentElement.innerHTMLdocument.getElementById("MyIFrame").contentDocument.getElementById("s").style.color="blue"; ... 阅读全文
posted @ 2015-07-03 17:17 零点零一 阅读(454) 评论(0) 推荐(0)
WP8.1 实现Continuation程序(打开文件,保存文件等)
摘要:以保存文件为例首先,在项目中加入ContinuationManager.cs类,以及SuspensionManager.cs类。其次,在App.xaml.cs中,完成如下步骤:1. 添加ContinuationManager类的实例作为属性。public ContinuationManager Co... 阅读全文
posted @ 2015-07-02 16:26 零点零一 阅读(259) 评论(0) 推荐(0)
WP8.1 双击两次返回键退出程序
摘要:在实现Windows Phone上实现点按两次返回键退出程序, 一种方法是使用Coding4Fun提供的ToastPrompt, 使用方法如下:1. 安装引用, 打开Package Manager Console.输入下列命令以安装 Coding4Fun.Toolkit.ControlsInstal... 阅读全文
posted @ 2015-07-02 16:13 零点零一 阅读(296) 评论(0) 推荐(0)