Buenas, espero me puedan ayudar.
Estoy haciendo un user control que tendra las funciones de la toolbar de edicion de texto del word.
hasta ahora hice esto:
private void btnBold_Click(object sender, EventArgs e)
{
if (txtTexto.SelectionFont.Bold)
{
txtTexto.SelectionFont. = new System.Drawing.Font("Arial", 10, FontStyle.Regular);
}
else
{
txtTexto.SelectionFont = new System.Drawing.Font("Arial", 10, FontStyle.Bold );
}
}
private void btnItalic_Click(object sender, EventArgs e)
{
if (txtTexto.SelectionFont.Italic)
{
txtTexto.SelectionFont = new System.Drawing.Font("Arial", 10, FontStyle.Regular);
}
else
{
txtTexto.SelectionFont = new System.Drawing.Font("Arial", 10, FontStyle.Italic);
}
}
El problema es que funcionan bien por separado digamos, pero no puedo por ejemplo que la fuente este en
kursiva y negrita a la vez. solo es un , otra o normal =S.
si alguien me da una manito se los agradecere mucho, y si quieren colaborar con los botones copiar, pegar, cortar y alinear no me enojo
=P
Gracias por su tiempo
P.D.: si conocen algu addin o pluggin de alguna toolbar existente avisenme tmb por favor.