有没有人能够在WinRT中的XAML中添加原语?我尝试运行以下命令,这是除WinRT之外的所有基于XAML的技术的标准:
<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:System="using:System">
<System:Double x:Key="MyWidth">550</System:Double>
</ResourceDictionary>
这不会在Visual Studio中显示错误,但它会抛出一个带有消息的XamlParseException&#34;类型&#39; Double&#39;没找到......&#34;
谢谢!
答案 0 :(得分:19)
系统类型的命名空间已替换为“x”
<x:Double>550</x:Double>