如何使 BorderThickness 从 WPF 资源键接收其值?
我尝试创建 String
、Int32
资源,如下所示,但它不起作用。我收到错误消息,指出该值无法转换。
如果您知道如何执行此操作,请提供帮助。
<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}" />
I try to create String
, Int32
resource as below but it doesn't work. I got the error saying that the value can't be converted.
If you know how to do this please help.
<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}" />
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
BorderThickness
的类型为 System.Windows .Thinkness 不是Int32
祝你好运!
The type of
BorderThickness
is System.Windows.Thinkness notInt32
Good luck!