我正在尝试在 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'.
有人对我做错了什么有任何想法吗?提前致谢。