有没有人能够在 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 并显示消息“未找到类型 'Double'...”
谢谢!