miércoles, 17 de septiembre de 2014

Cambiar fuente en Visual C#


 private void negrita_CheckedChanged(object sender, EventArgs e)
        {
            textBox1.Font = new Font(textBox1.Font.Name, textBox1.Font.Size, textBox1.Font.Style ^ FontStyle.Bold);
        }


 private void cursiva_CheckedChanged(object sender, EventArgs e)
        {
            textBox1.Font = new Font(textBox1.Font.Name, textBox1.Font.Size, textBox1.Font.Style ^ FontStyle.Italic);
        }

No hay comentarios.:

Publicar un comentario

Es muy importante tu comentarios: