在样式设置器中设置 CornerRadius 的特定成员时出现问题
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这不是设置器的工作方式,你 无法设置属性的属性,只能将整个
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.