我想定义双精度值,以便可以在许多情况下重用它UIElements
<Double x:Key="MyWidth">100</Double>
<String x:Key="MyString">This is my text</String>
它给了我错误Double is not supported in a Windows App project.
,字符串也是如此。
如果我包含xmlns:sys="using:System"
在 StandardStyles.xaml 中,那么它正在编译。
<sys:Double x:Key="MyWidth">100</sys:Double>
<sys:String x:Key="MyString">This is my text</sys:String>
它在运行时给出异常XAML Parsing Failed. The type 'Double' was not found.