有没有人能够在WinRT中的XAML中添加原语?我试图运行以下,这是所有基于XAML的技术的标准,除了WinRT:
<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,并显示一条消息“类型”Double“未找到…”
谢谢!
系统类型的命名空间被替换为’x’
原文链接:https://www.f2er.com/windows/364013.html<x:Double>550</x:Double>