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.
  1. // An enum to specify the theme.
  2. public enum AppTheme
  3. {
  4. Dark = 0,
  5. Light = 1
  6. }
  7.  
  8. // Detecting the current theme.
  9. private static Color lightThemeBackground = Color.FromArgb(255, 255, 255, 255);
  10. private static Color darkThemeBackground = Color.FromArgb(255, 0, 0, 0);
  11. private static SolidColorBrush backgroundBrush;
  12. internal static AppTheme CurrentTheme
  13. {
  14. get
  15. {
  16. if ( backgroundBrush == null )
  17. backgroundBrush = Application.Current.Resources["PhoneBackgroundBrush"] as SolidColorBrush;
  18.  
  19. if (backgroundBrush.Color == lightThemeBackground)
  20. return AppTheme.Light;
  21. else if (backgroundBrush.Color == darkThemeBackground)
  22. return AppTheme.Dark;
  23.  
  24. return AppTheme.Dark;
  25. }
  26. }

以上是关于windows phone 8开发,xmal文件代码 不显示高亮颜色,这个问题怎么解决的主要内容,如果未能解决你的问题,请参考以下文章

windows phone 8.1 公司简介

Windows Phone 8 与 windows 8 开发技术概览

Windows Phone 8 与 windows 8 开发技术概览

在开发Windows Phone 8.1应用程序时,我在哪里可以找到保存在ApplicationData.Current.LocalFolder中的文件?

Windows Phone 8 错误 - 应用程序安装失败

Windows Phone 8 的本地数据库