2

我正在尝试在 Common.xaml 中定义一个公共 Width 资源,该资源将由不同的控件共享,如下所示:

<GridLength x:Key="CommonWidth">20</GridLength>

然后我在 ButtonStyle.xaml 中定义的 Button 样式中使用它

<Style x:Key="ButtonStyle" TargetType="{x:Type Button}">
    <Setter Property="Width" Value="{DynamicResource CommonWidth}"/>
    ....
</Style>

Common.xaml 包含在 App.xaml 的 ResourceDictionary 定义中的 ButtonStyle.xaml 之前。当我运行应用程序(在 .Net3.5 SP1 上)时,出现以下异常:

'20' is not a valid value for property 'Width'.

有人对我做错了什么有任何想法吗?提前致谢。

4

1 回答 1

2

注意Button.Width不是类型GridLength。您可以将值指定为Grid.GridLength固定、自动或星号。它仅用于. 中的行、列的大小Grid

Button.Width是类型double。也就是说,如果你想使用你需要的资源来设置它

<sys:Double x:Key="Height">200</sys:Double>
于 2012-12-03T12:28:08.613 回答