ฉันจะเปลี่ยนพื้นหลังและสีพื้นหน้าของ WPF Textbox โดยทางโปรแกรมใน C # ได้อย่างไร
ฉันจะเปลี่ยนพื้นหลังและสีพื้นหน้าของ WPF Textbox โดยทางโปรแกรมใน C # ได้อย่างไร
คำตอบ:
textBox1.Background = Brushes.Blue;
textBox1.Foreground = Brushes.Yellow;
WPF 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;
LinearGradientBrush
:)
หากคุณต้องการตั้งค่าพื้นหลังโดยใช้สี hex คุณสามารถทำได้:
var bc = new BrushConverter();
myTextBox.Background = (Brush)bc.ConvertFrom("#FFXXXXXX");
หรือคุณสามารถตั้งค่าทรัพยากร SolidColorBrush ใน XAML แล้วใช้ findResource ในโค้ด - หลัง:
<SolidColorBrush x:Key="BrushFFXXXXXX">#FF8D8A8A</SolidColorBrush>
myTextBox.Background = (Brush)Application.Current.MainWindow.FindResource("BrushFFXXXXXX");
(System.Windows.Media.Brush)Application.Current.FindResource("BrushFFXXXXX");
เป็นใบสมัครของคุณจะไม่โยนข้อยกเว้นเกลียวถ้ามันถูกอัพเกรดให้ใช้หลายหัวข้อรีบในอนาคต
ฉันคิดว่าคุณกำลังสร้างกล่องข้อความใน XAML หรือไม่
ในกรณีนี้คุณต้องตั้งชื่อให้กับกล่องข้อความ จากนั้นใน code-behind คุณสามารถตั้งค่าคุณสมบัติพื้นหลังโดยใช้แปรงหลาย ๆ วิธีที่ง่ายที่สุดคือ SolidColorBrush:
myTextBox.Background = new SolidColorBrush(Colors.White);
คุณสามารถแปลง hex เป็น RGB:
string ccode = "#00FFFF00";
int argb = Int32.Parse(ccode.Replace("#", ""), NumberStyles.HexNumber);
Color clr = Color.FromArgb(argb);
คุณสามารถใช้สีฐานสิบหก:
your_contorl.Color = DirectCast(ColorConverter.ConvertFromString("#D8E0A627"), Color)
คุณได้ดูColor.FromRgb
ไหม?