c# - ejemplo - Líneas seleccionadas de color RichTextBox
richtextbox html (1)
Establezca SelectionColor
antes de agregar, algo como:
int line = 0;
foreach (string file in myfiles)
{
// Whatever method you want to choose a color, here
// I''m just alternating between red and blue
richTextBox1.SelectionColor =
line % 2 == 0 ? Color.Red : Color.Blue;
// AppendText is better than rtb.Text += ...
richTextBox1.AppendText(file + "/r/n");
line++;
}
Soy nuevo en Windows Forms. Estoy usando VS 2008, C # para escribir un RichTextBox. Quiero poder colorear cada línea con un color diferente a medida que escribo en RichTextBox. ¿Puede alguien señalarme muestras? Gracias
foreach (string file in myfiles)
{
// As I process my files
// richTextBox1.Text += "My processing results";
if(file == "somefileName")
{
// Color above entered line or enter new colored line
}
}