我从 ToggleBox 控件向我的组合框添加样式,一切正常。
但是现在我想为何时Validation.HasError为真添加额外的交互。出于某种原因,它告诉我“在‘对象’‘ExtendedComboBoxControl’上找不到‘验证’属性”,这是我从 ComboBox 继承的自定义控件。
我尝试直接在组合框的样式中使用触发器,但出于某种原因,我可以从那里更改边框厚度,但不能更改背景或边框画笔。
<Style x:Key="ComboBoxToggleButtonStyle" TargetType="{x:Type ToggleButton}">
<Setter Property="OverridesDefaultStyle" Value="true" />
<Setter Property="IsTabStop" Value="false" />
<Setter Property="Focusable" Value="false" />
<Setter Property="ClickMode" Value="Press" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type ToggleButton}">
<Border x:Name="templateRoot"
Background="{StaticResource ComboBox.Static.Background}"
BorderBrush="{StaticResource ComboBox.Static.Border}"
BorderThickness="{TemplateBinding BorderThickness}"
SnapsToDevicePixels="true">
<Border x:Name="splitBorder"
Width="{DynamicResource {x:Static SystemParameters.VerticalScrollBarWidthKey}}"
Margin="1"
Padding="0"
HorizontalAlignment="Right"
BorderBrush="Transparent"
BorderThickness="2,0,0,0"
SnapsToDevicePixels="true">
<Path x:Name="arrow"
Margin="0"
HorizontalAlignment="Center"
VerticalAlignment="Center"
Data="F1 M 0,0 L 5,5 L 10,0 L 0,0"
Fill="{StaticResource Grey500Brush}" />
</Border>
</Border>
这不是我想要实现的最终交互,但我希望当我将鼠标悬停在组合框背景和边框刷上时出现验证错误时,这会使组合框背景和边框刷变为绿色。
相反,它告诉我它甚至无法在我的控制下找到该属性。
达令说
相关分类