如何在C#中以编程方式更改WPF文本框的背景和前景色?
答案 0 :(得分:300)
textBox1.Background = Brushes.Blue;
textBox1.Foreground = Brushes.Yellow;
WPF Foreground和Background的类型为System.Windows.Media.Brush
。你可以设置另一种颜色:
using System.Windows.Media;
textBox1.Background = Brushes.White;
textBox1.Background = new SolidColorBrush(Colors.White);
textBox1.Background = new SolidColorBrush(Color.FromArgb(0xFF, 0xFF, 0, 0));
textBox1.Background = System.Windows.SystemColors.MenuHighlightBrush;
答案 1 :(得分:94)
如果要使用十六进制颜色设置背景,可以执行以下操作:
var bc = new BrushConverter();
myTextBox.Background = (Brush)bc.ConvertFrom("#FFXXXXXX");
或者你可以在XAML中设置一个SolidColorBrush资源,然后在代码隐藏中使用findResource:
<SolidColorBrush x:Key="BrushFFXXXXXX">#FF8D8A8A</SolidColorBrush>
myTextBox.Background = (Brush)Application.Current.MainWindow.FindResource("BrushFFXXXXXX");
答案 2 :(得分:21)
我认为你是在XAML中创建TextBox吗?
在这种情况下,您需要为文本框指定名称。然后在代码隐藏中,您可以使用各种画笔设置Background属性。最简单的是SolidColorBrush:
myTextBox.Background = new SolidColorBrush(Colors.White);
答案 3 :(得分:6)
您可以将十六进制转换为RGB:
string ccode = "#00FFFF00";
int argb = Int32.Parse(ccode.Replace("#", ""), NumberStyles.HexNumber);
Color clr = Color.FromArgb(argb);
答案 4 :(得分:5)
您可以使用十六进制颜色:
your_contorl.Color = DirectCast(ColorConverter.ConvertFromString("#D8E0A627"), Color)
答案 5 :(得分:3)
您是否看过Color.FromRgb
?
答案 6 :(得分:1)
我知道这已在另一篇 SOF 帖子中得到解答。但是,如果您知道十六进制,则可以执行此操作。
if