gpt4 book ai didi

xaml - 如何在 StandardStyles.xaml 中定义基元

转载 作者:行者123 更新时间:2023-12-05 00:31:40 27 4
gpt4 key购买 nike

我想定义 double 值,以便我可以在许多 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.

最佳答案

不需要包含 System 命名空间。
已经包含了一个命名空间 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"

<x:Double x:Key="MyWidth">100</x:Double>
<x:String x:Key="MyString">This is my text</x:String>

关于xaml - 如何在 StandardStyles.xaml 中定义基元,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14351497/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com