gpt4 book ai didi

WPF Combobox Validation.ErrorTemplate 错误

转载 作者:行者123 更新时间:2023-12-04 14:25:30 32 4
gpt4 key购买 nike

我有一个组合框,我需要编辑其错误模板以在出现验证错误时显示红色边框。

我正在使用以下样式

<Style TargetType="{x:Type ComboBox}" >
<Setter Property="Validation.ErrorTemplate">
<Setter.Value>
<ControlTemplate>
<DockPanel>
<Border BorderBrush="Red" BorderThickness="3">
<AdornedElementPlaceholder />
</Border>
</DockPanel>
</ControlTemplate>
</Setter.Value>
</Setter>
<Setter Property="FontFamily" Value="Segoe UI" />
<Setter Property="FontSize" Value="12" />
<Setter Property="VerticalAlignment" Value="Center" />
</Style>

发生验证错误时,边框永远不会出现。任何提示出了什么问题?

最佳答案

Style你发布了作品。你应该检查你的绑定(bind),你添加了ValidatesOnDataErrors=TrueValidatesOnExceptions=True绑定(bind)到 SelectedValue ?

关于WPF Combobox Validation.ErrorTemplate 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4100848/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com