Globalization and accessibility for tile and toast notifications (Windows Store apps)
摘要:http://msdn.microsoft.com/en-us/library/windows/apps/hh831183.aspx做 HighContrast时,采用以下分目录方式:/ProjectFolder /images welcome.png /contrast-black welcome.png /contrast-white welcome.png /fr-FR welcome.png /contrast-black ...
阅读全文
Sharing Code Between Silverlight and Win8 app metro
摘要:这里讲得很详细了: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
阅读全文
Sharing Code Between Silverlight and WPF
摘要:一个很好的列子: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
阅读全文
Prism-超轻量的开源框架
摘要:http://msdn.microsoft.com/en-us/library/ff648465.aspxprism 是微软模式与实践小组开发的一个进行MVVM模式开发,其中使用依赖注入等一些方法将软件业务逻辑解依赖,方便软件开发者开发出可扩展的高可用性的应用。Prism是一个超轻量的开源框架,前身是Angel ,现在改名为 Prism,其目标是实现WEB系统的页面与代码分离,并且不需要书写大量的 配置文件。之所以起名称为三棱镜,是因为本框架会像三棱镜一样不但可以处理 页面请求,还可以有选择的改变页面请求。Prism最大的特点是不需要您开发的代码引入本框架的任何类,只需要在您的WEB系统中加入
阅读全文
Windows8 App Store 开发者会关心的文档
摘要:在远程计算机上从 Visual Studio 调试和测试 Windows 应用商店应用程序http://msdn.microsoft.com/zh-cn/library/windows/apps/hh441469.aspx提交您的 Windows 8 应用程序http://blogs.msdn.co...
阅读全文
win8 app code中设置Resources里定义好的Style
摘要:WPF中应该可以用这个:rectangle.Style = (Style)FindResource("FormLabelStyle");但 Win8.1 App是个精简框架,FindResource无效,可以用下面的代替:rectangle.Style = (Style)Application.Current.Resources["HighLightStyle"];
阅读全文