请解释一下,这种风格是如何运作的?

发布于 2024-10-26 08:13:37 字数 450 浏览 3 评论 0原文

        <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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

网名女生简单气质 2024-11-02 08:13:38

这是因为 Image.Width 引用了 FrameworkElement.Width 属性通过 Image 类。换句话说,您通过 Image 类解析 FrameworkElement.WidthProperty 字段,该类继承自 FrameworkElement

如果您希望宽度仅应用于图像,请使用 TargetTypeImage 的单独样式。

That's because Image.Width refers to the FrameworkElement.Width property via the Image class. In other words, you're resolving the FrameworkElement.WidthProperty field by by way of the Image class, which inherits it from FrameworkElement.

If you want the width only to apply to images, use a separate style that with a TargetType of Image.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文