上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 14 下一页
摘要: 在wp7程序中,当程序功能越来越复杂时,性能问题是我们不得不考虑的一个问题。在聊天列表中,如果聊天项过多,而且项目UI组件足够复杂时,我们不得不想尽办法让UI尽快加载。所以有一种可行的方案,就是像QQ聊天列表一样,从上至下,列表项逐一加载(加载完第一项,再加载第二项,再加载第三项,给用户尽快的UI响应,也不至于等待到显示所有的列表项。在我们的例子中,我还给每个列表项显示的过程中加入了渐显动画,这样当列表项足够复杂时,也能表现出比较好的展示效果。实现的基本原理: 实现的原理也不难,主要的思路是: 1.列表项原本只是一个简单的自定义ContentControl(Codewp7ItemConta.. 阅读全文
posted @ 2013-01-07 16:04 xiaofoyuan 阅读(945) 评论(2) 推荐(0) 编辑
摘要: http://www.alibuybuy.com/posts/78760.html 阅读全文
posted @ 2013-01-04 09:00 xiaofoyuan 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 转:证书加密导入导出C#操作2011年12月15日 使用X.509数字证书加密解密实务(一)-- 证书的获得和管理 一、 获得证书... 2 1、 从CA获得... 2 2、 从windows2003证书服务中获得... 2 3、 使用makecert工具获得... 2 二、 证书的保存... 2 1、 保存在证书存储区... 2 2、 以文件形式保存... 4 2.1. 带有私钥的证书... 4 2.2. 二进制编码的证书... 4 2.3. Base64编码的证书... 4 3、 存储区中的证书跟证书文件相互转换... 4 3.1. 使用工具相互转换... 4 ... 阅读全文
posted @ 2012-12-10 14:04 xiaofoyuan 阅读(7288) 评论(0) 推荐(0) 编辑
摘要: 1、Makecert.exe<证书创建工具>使用说明:http://msdn.microsoft.com/zh-cn/library/bfsktky3.aspx2、SignTool.exe<签名工具>使用说明:http://msdn.microsoft.com/zh-cn/library/8s9b9yaz.aspx3、pvk2pfx<证书信息搬家工具>使用说明:http://technet.microsoft.com/zh-cn/subscriptions/ff5506724、MakeAppx.exe<应用包生成工具>使用说明:http://ms 阅读全文
posted @ 2012-12-07 14:33 xiaofoyuan 阅读(10188) 评论(0) 推荐(0) 编辑
摘要: http://www.yupoo.com/photos/fenng/albums/4898843/page1/?style=story 阅读全文
posted @ 2012-12-05 12:33 xiaofoyuan 阅读(106) 评论(0) 推荐(0) 编辑
摘要: http://cnbeta.com/articles/216380.htm 阅读全文
posted @ 2012-12-03 09:06 xiaofoyuan 阅读(179) 评论(0) 推荐(0) 编辑
摘要: http://docs.nuget.org/docs/start-here/using-the-package-manager-console详细安装命令的使用http://nuget.org/packages/wptoolkitwp8Toolkit的安装 阅读全文
posted @ 2012-11-21 08:57 xiaofoyuan 阅读(197) 评论(0) 推荐(0) 编辑
摘要: http://msdn.microsoft.com/en-us/library/gg442303(v=VS.92).aspx 阅读全文
posted @ 2012-11-13 16:10 xiaofoyuan 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 1、App设计参考资料http://www.windows8designhandbook.com/2、http://social.msdn.microsoft.com/Forums/zh-CN/wpfzhchs/thread/b09e0e45-7af1-4702-af42-44a7d036e196/宽图动画移动3、http://www.williamlong.info/archives/3286.html win8应用设计 阅读全文
posted @ 2012-11-08 09:33 xiaofoyuan 阅读(245) 评论(0) 推荐(0) 编辑
摘要: 1、文件选择FileOpenPicker filePicker = new FileOpenPicker() { ViewMode = PickerViewMode.Thumbnail }; //只有图片 filePicker.SuggestedStartLocation = PickerLocationId.PicturesLibrary; FillDecoderExtensions(filePicker.FileTypeFilter); StorageFile imageFile = await filePicke... 阅读全文
posted @ 2012-11-07 16:07 xiaofoyuan 阅读(1858) 评论(0) 推荐(1) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 14 下一页