mscorlib.dll 命名空间在 Windows Phone 8.1 XAML 中不起作用
mscorlib.dll namespace is not working in Windows Phone 8.1 XAML
我在WP8.0中有如下代码
xmlns:my="clr-namespace:System;assembly=mscorlib"
<my:String x:Key="OnlineImagesPageName">OnlineImages</my:String>
<my:Int32 x:Key="PeopleInsertLimit">5</my:Int32>
<my:Int32 x:Key="ShowsInsertLimit">2</my:Int32>
但是当我在 Windows Phone 8.1 Universal Apps 中使用这个片段时,"String" 在我写
时没有显示
<my:
在代码中,如何解决这个问题。
任何要更改的命名空间,请指导我解决此错误。
取决于我在通用中使用的版本
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
<x:String>11</x:String>
<x:Bind></x:Bind>
<x:Boolean>true</x:Boolean>
<x:Double>1</x:Double>
<x:Int32>1</x:Int32>
<x:NullExtension></x:NullExtension>
根据目标,它随着 XAML
的历史而改变
我在WP8.0中有如下代码
xmlns:my="clr-namespace:System;assembly=mscorlib"
<my:String x:Key="OnlineImagesPageName">OnlineImages</my:String>
<my:Int32 x:Key="PeopleInsertLimit">5</my:Int32>
<my:Int32 x:Key="ShowsInsertLimit">2</my:Int32>
但是当我在 Windows Phone 8.1 Universal Apps 中使用这个片段时,"String" 在我写
时没有显示<my:
在代码中,如何解决这个问题。
任何要更改的命名空间,请指导我解决此错误。
取决于我在通用中使用的版本
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
<x:String>11</x:String>
<x:Bind></x:Bind>
<x:Boolean>true</x:Boolean>
<x:Double>1</x:Double>
<x:Int32>1</x:Int32>
<x:NullExtension></x:NullExtension>
根据目标,它随着 XAML
的历史而改变