windows phone 8开发,xmal文件代码 不显示高亮颜色,这个问题怎么解决
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了windows phone 8开发,xmal文件代码 不显示高亮颜色,这个问题怎么解决相关的知识,希望对你有一定的参考价值。
如果用的是vs2010的话,选择字体与颜色,选择选项,选择文本编辑器,选择突出显示的应用,选择你喜欢的颜色,一般bug都是用红色标注,变量用绿色标注,实在不会重装vs2010,重装wp8 sdk即可,望采纳 参考技术A建议你把你这个问题的分类改一下,你这个问题属于编程语言级别的,windows分类只是解决一些windows的使用问题,在这个分类下恐怕你的问题何难得到解决。
参考技术B 在VS中,选择该文件右键-"自动选择代码编辑器打开(XML)"即可Windows Phone 7检测当前主题
Add this code to your App.xaml.cs inside your App class to enable a static property that will give you the current theme at runtime.
// An enum to specify the theme. public enum AppTheme { Dark = 0, Light = 1 } // Detecting the current theme. private static Color lightThemeBackground = Color.FromArgb(255, 255, 255, 255); private static Color darkThemeBackground = Color.FromArgb(255, 0, 0, 0); private static SolidColorBrush backgroundBrush; internal static AppTheme CurrentTheme { get { if ( backgroundBrush == null ) backgroundBrush = Application.Current.Resources["PhoneBackgroundBrush"] as SolidColorBrush; if (backgroundBrush.Color == lightThemeBackground) return AppTheme.Light; else if (backgroundBrush.Color == darkThemeBackground) return AppTheme.Dark; return AppTheme.Dark; } }
以上是关于windows phone 8开发,xmal文件代码 不显示高亮颜色,这个问题怎么解决的主要内容,如果未能解决你的问题,请参考以下文章
Windows Phone 8 与 windows 8 开发技术概览
Windows Phone 8 与 windows 8 开发技术概览
在开发Windows Phone 8.1应用程序时,我在哪里可以找到保存在ApplicationData.Current.LocalFolder中的文件?