在样式设置器中设置 CornerRadius 的特定成员时出现问题

发布于 2024-12-02 06:04:49 字数 957 浏览 1 评论 0原文

在 ControlTemplate 的资源部分中,我尝试在 DataTrigger 中使用设置器来修改边框上的各个角半径:

<Style x:Key="SectionBorder" TargetType="{x:Type Border}" >
    <Setter Property="CornerRadius" Value="5" />
    <Style.Triggers>
        <DataTrigger Binding="{Binding HasChildSection, RelativeSource={RelativeSource TemplatedParent}}" Value="True">
            <Setter Property="(Border.CornerRadius).(CornerRadius.BottomLeft)" Value="0" />
            <Setter Property="(Border.CornerRadius).(CornerRadius.BottomRight)" Value="0" />                                    
        </DataTrigger>
    </Style.Triggers>
</Style>

这会生成编译器错误:

“无法解析样式属性‘BottomLeft)’。验证所属类型是否是样式的TargetType,或使用 Class.Property 语法来指定 Property。”

WPF 是否会因为 CornerRadius 既是属性名称又是类型名称而感到困惑?或者我没有正确使用“Class.Property 语法”?如果我仅使用“CornerRadius.BottomLeft”作为 Property,我会在运行时收到 XamlParseException,指出 Property 不能设置为 null。

In the Resources section of a ControlTemplate I try to use a setter in a DataTrigger to modify individual corner radii on a Border:

<Style x:Key="SectionBorder" TargetType="{x:Type Border}" >
    <Setter Property="CornerRadius" Value="5" />
    <Style.Triggers>
        <DataTrigger Binding="{Binding HasChildSection, RelativeSource={RelativeSource TemplatedParent}}" Value="True">
            <Setter Property="(Border.CornerRadius).(CornerRadius.BottomLeft)" Value="0" />
            <Setter Property="(Border.CornerRadius).(CornerRadius.BottomRight)" Value="0" />                                    
        </DataTrigger>
    </Style.Triggers>
</Style>

This generates the compiler error:

"Cannot resolve the Style Property 'BottomLeft)'. Verify that the owning type is the Style's TargetType, or use Class.Property syntax to specify the Property."

Is WPF getting confused because CornerRadius is both property name and type name? Or am I not using "Class.Property syntax" properly? If I just use "CornerRadius.BottomLeft" for Property, I get a XamlParseException at runtime, stating that Property cannot be set to null.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

盛夏已如深秋| 2024-12-09 06:04:49

这不是设置器的工作方式,你 无法设置属性的属性,只能将整个 CornerRadius 替换为新的。

Property 需要 一个 属性而不是属性路径。

That is not how setters work, you cannot set properties of properties, you only can replace the whole CornerRadius with a new one.

Property expects one property not a property path.

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