gpt4 book ai didi

c# - 从文本框更改为组合框

转载 作者:行者123 更新时间:2023-12-03 10:48:45 24 4
gpt4 key购买 nike

我在WPF页面中将自定义样式应用于文本框,但是现在我已将TextBoxes更改为可编辑的ComboBox,并且需要应用样式以适合新的可编辑的ComboBox。这是当前代码:

<Style TargetType="ComboBox">
<Setter Property="VerticalAlignment" Value="Center"/>
<Setter Property="BorderBrush" Value="Silver"/>
<Setter Property="BorderThickness" Value="1"/>
<Setter Property="SnapsToDevicePixels" Value="True"/>
<Setter Property="OverridesDefaultStyle" Value="True"/>
<Setter Property="FocusVisualStyle" Value="{x:Null}"/>
<Setter Property="AllowDrop" Value="true"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type TextBoxBase}">
<Border Name="Border" Padding="1" Background="#FFFFFF" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" >
<ScrollViewer Margin="0" x:Name="PART_ContentHost"/>
</Border>
<ControlTemplate.Triggers>
<Trigger Property="IsEnabled" Value="False">
<Setter TargetName="Border" Property="Background" Value="#EEEEEE"/>
<Setter TargetName="Border" Property="BorderBrush" Value="#EEEEEE"/>
<Setter Property="Foreground" Value="#888888"/>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>

以上是我设法更改的内容,但是我不确定还需要更改什么。可编辑的ComboBox本质上是一个带有下拉菜单的文本框,因此我认为它几乎保持不变。 TextBoxBase似乎是最大的问题。

最佳答案

创建新的示例项目后,问题似乎出在Windows 8中。

关于c# - 从文本框更改为组合框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15507604/

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