Thay đổi Màu Font kiểu Chữ Trong C#

Thay đổi cố định
+ Thay đổi màu
code
textBox1.ForeColor = Color.Red;/*forecolor: đổi màu text còn backcolor đổi màu hết textbox*/
+ Thay đổi Font
code
FontFamily f = new FontFamily("Times New Roman");/*Khởi tạo font mới*/
textBox1.Font = new Font(f,textBox1.Font.Size);/* Gnas forn mới cho font cần đổi*/
/*Note: Đánh tên Font Phải đánh cho chính xác*/
+ Thay đổi Style(Định Dạng)
code
textBox1.Font = new Font(textBox1.Font,textBox1.Font.Style^FontStyle.Bold);/*Gán Style mới cho font cần gán*/
Thay Đổi tùy Chọn
Khởi Tạo và chạy

Code
+ Font
if (fontDialog1.ShowDialog() == DialogResult.OK)
textBox1.Font = fontDialog1.Font;/*khởi đọng Fontdialog và thay đổi Font mới*/
+ Color
if (colorDialog1.ShowDialog() == DialogResult.OK)
textBox1.ForeColor = colorDialog1.Color;/*Khởi tạo colordialog và thay đổi color mới */