请解释一下,这种风格是如何运作的?
<Style TargetType="DataGridCell">
<Style.Setters>
<Setter Property="TextBlock.VerticalAlignment" Value="Center" />
<Setter Property="TextBlock.FontSize" Value="30" />
<Setter Property="Image.Width" Value="24" />
</Style.Setters>
</Style>
前 2 个二传手按预期工作。最后一个 setter 也将宽度应用于所有元素、图像和文本块。为什么?
<Style TargetType="DataGridCell">
<Style.Setters>
<Setter Property="TextBlock.VerticalAlignment" Value="Center" />
<Setter Property="TextBlock.FontSize" Value="30" />
<Setter Property="Image.Width" Value="24" />
</Style.Setters>
</Style>
The first 2 setters work as expected. The last setter applies width to all elements, images and text blocks too. Why?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是因为
Image.Width
引用了FrameworkElement.Width
属性通过Image
类。换句话说,您通过Image
类解析FrameworkElement.WidthProperty
字段,该类继承自FrameworkElement
。如果您希望宽度仅应用于图像,请使用
TargetType
为Image
的单独样式。That's because
Image.Width
refers to theFrameworkElement.Width
property via theImage
class. In other words, you're resolving theFrameworkElement.WidthProperty
field by by way of theImage
class, which inherits it fromFrameworkElement
.If you want the width only to apply to images, use a separate style that with a
TargetType
ofImage
.