gpt4 book ai didi

c# - WPF 中 TextBox 的 BorderThickness(错误?)

转载 作者:太空狗 更新时间:2023-10-29 23:48:24 24 4
gpt4 key购买 nike

BorderThickness 属性设置为 1 时,我注意到 TextBox 有一个奇怪的行为 - 焦点导致边框改变颜色(变成白色之类的东西)。但是,如果我将边框粗细设置为不同于 1 的值,比如 .99 或 1.01,问题就会消失。

是WPF的bug吗?还是有意为之?

最佳答案

这是文本框 Aero 样式的默认行为。要禁用它,您需要重新设置 TextBox 的样式。您可以从 here 中获取默认样式(参见下载示例)。

在 TextBoxBase(TextBox 所基于的)的默认样式中,您会看到它使用了 ListBoxChrome。此元素在 Presentation.Aero 程序集中定义,负责渲染“聚焦”外观。您可以简单地删除 RenderFocus 设置和可能的 RenderMouseOver,或将其替换为 Border。

然后您希望将其包含在您的应用程序资源中。

<LinearGradientBrush x:Key="TextBoxBorder"
StartPoint="0,0" EndPoint="0,20" MappingMode="Absolute">
<LinearGradientBrush.GradientStops>
<GradientStop Color="#ABADB3" Offset="0.05" />
<GradientStop Color="#E2E3EA" Offset="0.07" />
<GradientStop Color="#E3E9EF" Offset="1" />
</LinearGradientBrush.GradientStops>
</LinearGradientBrush>

<Style x:Key="{x:Type TextBoxBase}" TargetType="{x:Type TextBoxBase}" BasedOn="{x:Null}">
<Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.ControlTextBrushKey}}" />
<Setter Property="Background" Value="{DynamicResource {x:Static SystemColors.WindowBrushKey}}" />
<Setter Property="BorderBrush" Value="{StaticResource TextBoxBorder}" />
<Setter Property="BorderThickness" Value="1" />
<Setter Property="Padding" Value="1" />
<Setter Property="AllowDrop" Value="true" />
<Setter Property="FocusVisualStyle" Value="{x:Null}" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type TextBoxBase}">
<Border x:Name="Bd" BorderThickness="{TemplateBinding BorderThickness}"
BorderBrush="{TemplateBinding BorderBrush}" Background="{TemplateBinding Background}"
SnapsToDevicePixels="true">
<ScrollViewer x:Name="PART_ContentHost" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" />
</Border >
<ControlTemplate.Triggers>
<Trigger Property="IsEnabled" Value="false">
<Setter TargetName="Bd" Property="Background" Value="{DynamicResource {x:Static SystemColors.ControlBrushKey}}" />
<Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.GrayTextBrushKey}}" />
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style x:Key="{x:Type TextBox}" BasedOn="{StaticResource {x:Type TextBoxBase}}" TargetType="{x:Type TextBox}"/>

如果您查看 Reflector 中的 ListBoxChrome 类(特别是 OnRender 方法),您会发现它只会在 BorderThickness 为“1,1,1,1”时呈现聚焦外观。

关于c# - WPF 中 TextBox 的 BorderThickness(错误?),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4127361/

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