天马行空  
I ---- Inject 投入 L ---- Loyal 忠诚 O ---- Observant 用心 V ---- Valiant 勇敢 E ---- Enjoyment 喜悦 Y ---- Yes 愿意 O ---- Obligation 责任
上一页 1 ··· 6 7 8 9 10 11 12 13 下一页

2013年11月19日

摘要: 这里讲得很详细了:Sharing Code between Windows Phone 8 and Windows 8 Applicationshttp://msdn.microsoft.com/en-us/magazine/dn201744.aspxThe Add Portable Class Library dialog in Visual Studio 2012 is where you can select the target frameworks the resulting assembly will support.You might initially think you sh 阅读全文
posted @ 2013-11-19 16:11 浅蓝 阅读(156) 评论(0) 推荐(0) 编辑
 
摘要: 一个很好的列子:http://www.codeproject.com/Articles/254506/XAMLFinance-A-Cross-platform-WPF-Silverlight-WP7-A使用MVVMThe WPF solution has much the same structure as the Silverlight one; however, all of the ViewModel, View and Resource files are included as links, as per the steps described above.Resolution Te 阅读全文
posted @ 2013-11-19 14:32 浅蓝 阅读(168) 评论(0) 推荐(0) 编辑
 
摘要: http://msdn.microsoft.com/en-us/library/ff648465.aspxprism 是微软模式与实践小组开发的一个进行MVVM模式开发,其中使用依赖注入等一些方法将软件业务逻辑解依赖,方便软件开发者开发出可扩展的高可用性的应用。Prism是一个超轻量的开源框架,前身是Angel ,现在改名为 Prism,其目标是实现WEB系统的页面与代码分离,并且不需要书写大量的 配置文件。之所以起名称为三棱镜,是因为本框架会像三棱镜一样不但可以处理 页面请求,还可以有选择的改变页面请求。Prism最大的特点是不需要您开发的代码引入本框架的任何类,只需要在您的WEB系统中加入 阅读全文
posted @ 2013-11-19 13:44 浅蓝 阅读(465) 评论(0) 推荐(0) 编辑

2013年11月15日

摘要: 在远程计算机上从 Visual Studio 调试和测试 Windows 应用商店应用程序http://msdn.microsoft.com/zh-cn/library/windows/apps/hh441469.aspx提交您的 Windows 8 应用程序http://blogs.msdn.co... 阅读全文
posted @ 2013-11-15 17:49 浅蓝 阅读(337) 评论(0) 推荐(0) 编辑

2013年11月7日

摘要: WPF中应该可以用这个:rectangle.Style = (Style)FindResource("FormLabelStyle");但 Win8.1 App是个精简框架,FindResource无效,可以用下面的代替:rectangle.Style = (Style)Application.Current.Resources["HighLightStyle"]; 阅读全文
posted @ 2013-11-07 10:24 浅蓝 阅读(171) 评论(0) 推荐(0) 编辑

2013年10月23日

摘要: 第一部分先要装一个accchecker,全称是 UI Accessibility Checker 。下载地址: http://acccheck.codeplex.com/装了之后 用这个工具可以 testapp的 accessiblity ,主要是一些ui问题比如accchecker所查出来的控件 有很多缺少 automationproperties.name属性的 要添加上至于name取什么名 要看控件的作用而定第二部分 tab 键的 顺序 及 所有可以点击的控件 都要能tab到就是 要让app可以不用鼠标 也能完成大部分功能第三部分是 narrator 电脑自带的一个工具 他可以读出 UI 阅读全文
posted @ 2013-10-23 15:39 浅蓝 阅读(360) 评论(0) 推荐(0) 编辑

2013年10月17日

摘要: 第一章1.1.3中提到 Jesse Liberty 的《Pro Windows 8 Development with XAML and C#》,这是一本关于win8更全面的书,以后看。 阅读全文
posted @ 2013-10-17 10:52 浅蓝 阅读(147) 评论(0) 推荐(0) 编辑

2013年10月15日

摘要: 只所以要在View(Xaml)背后写一些代码(C#), 无非是想传递一些数据以及传递数据时的数据的处理或在用户与界面控件进行交互时执行一些操作, 最简单的例子是在MVC中当界面发生交互时View去调用Controler中的某个方法, 以便将该操作的相应"指示"传递到"后台"去. 在以前的技术中, 这样的"衔接性"的代码是必须的. 而在WPF中, 则可以通过另外的技术来进行层与层之间的"衔接", 这就是"Binding" 和"Command", 以及稍后我们会提到的" 阅读全文
posted @ 2013-10-15 14:58 浅蓝 阅读(385) 评论(0) 推荐(0) 编辑

2013年10月12日

摘要: win8 app开发中使用async,await可以更方便地进行异步开发。async,await的使用可参考代码:Async Sample: Example from "Asynchronous Programming with Async and Await" (http://code.msdn.... 阅读全文
posted @ 2013-10-12 15:52 浅蓝 阅读(319) 评论(0) 推荐(0) 编辑

2013年10月11日

摘要: 昨天装了Win8.1,Office2013由于是英文版的,需要装一下中文语言包,然后就能使用自带的微软拼音输入法了。我喜欢双屏时的桌面背景,选择span时一张图片可以跨越2个屏幕,比win7的好。注销有点困难,没找到按钮,直接输入命令logout吧 阅读全文
posted @ 2013-10-11 11:00 浅蓝 阅读(155) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 下一页