gpt4 book ai didi

c# - WPF 从 C# 代码设置文本框边框颜色

转载 作者:可可西里 更新时间:2023-11-01 08:17:36 24 4
gpt4 key购买 nike

我有一个 WPF 应用程序,我必须在其中进行多次更新。

其中一个更新是我正在从 Label 更改为 TextBox

我在许多从 XAML 设置文本框边框颜色的示例中看到,这对我不起作用,因为业务规则条件有红色或黑色

我试过:

lblValidMsg.BorderBrush = Brushes.Red;
lblValidMsg.BorderBrush = System.Drawing.Color.Red; // converter.ConvertFromString("#FF0000"); //borderColor;


lblValidMsg.BorderBrush = SystemColors.Control;

private Color borderColor = Color.Gray;

我确定它很“简单”,但不断出现不同的错误

Cannot implicitly convert type 'System.Drawing.Color' to 'System.Windows.Media.Brush'   

是的,我知道我将文本框名称保留为标签名称,因此以“lbl”开头

更新:

我看到人们设置了背景和前景,但这不是我需要做的

textBox1.Background = Brushes.Blue;
textBox1.Foreground = Brushes.Yellow;

我试过了

lblValidMsg.BorderBrush = Brushes.Red;

这给出了 Cannot implicitly convert type 'System.Drawing.Color' to 'System.Windows.Media.Brush'

最佳答案

textBox.BorderBrush = System.Windows.Media.Brushes.Red;

适用于我,请确保您没有使用 System.Drawing.Brushes,您需要改用 Windows.Media 画笔。

关于c# - WPF 从 C# 代码设置文本框边框颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34168662/

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