5

我尝试创建如下资源StringInt32但它不起作用。我收到错误消息,提示无法转换该值。

如果您知道如何执行此操作,请提供帮助。

<ResourceDictionary 
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:sys="clr-namespace:System;assembly=mscorlib"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
    <sys:Int32 x:Key="MyKey">1</sys:Int32>
</ResourceDictionary>

<Label Content="abb" BorderThickness="{StaticResource MyKey}" />
4

1 回答 1

9

的类型BorderThicknessSystem.Windows.Thinkness不是Int32

<Thickness x:Key="MyKey" >1</Thickness>

祝你好运!

于 2010-11-04T12:30:32.620 回答