gpt4 book ai didi

wpf - 在 windows 经典主题中更改禁用列表框的背景颜色

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

我正在开发一个必须使用 Windows 经典主题运行的 WPF 应用程序。应用程序创建一个包含 ListBox 的对话框。当对话框出现时,在接受任何输入之前必须禁用它 1s。我正在使用样式触发器完成此操作,并且它有效。但是,列表框在禁用时显示白色背景,我似乎无法摆脱。使用 aero 主题时,以下样式资源修复了该问题:

<SolidColorBrush x:Key="{x:Static SystemColors.ControlBrushKey}" Color="Transparent"/>

但是当使用 Windows Classic 主题时,白色背景又出现了。我该如何补救经典主题的情况???

最佳答案

经过进一步研究,我发现 Windows Classic 主题使用 WindowBrushKey 而不是 ControlBrushKey。因此,这解决了 Aero 和 Classic 主题的问题:

<Style TargetType="{x:Type ListBox}">
<Style.Resources>
<SolidColorBrush x:Key="{x:Static SystemColors.ControlBrushKey}" Color="Transparent"/>
<SolidColorBrush x:Key="{x:Static SystemColors.WindowBrushKey}" Color="Transparent"/>
</Style.Resources>

关于wpf - 在 windows 经典主题中更改禁用列表框的背景颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2594714/

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