I am using a RichTextBox control to show pieces of text with a header, a body and a footer. Each part of the text has its own formatting (font, size, color, style, and so on), so the richness is complete!
The development is being done in Windows, with VisualStudio C# 2010. In order to make the development as flexible as possible, I am testing the outcome in linux, with Mono (r.2.10.5). Everything went fine until I put the footer to be shown in "italic" (you know, FontStyle.Italic).
While the text is properly shown in Windows, mono seems to refuse to show the footer in "italic" style. It does show the text, but in plain, regular, upright style.
This is the way I'm trying to implement it:
campoNoticias.SelectionFont = new System.Drawing.Font("TKTypeBold", 20F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
campoNoticias.SelectionAlignment = HorizontalAlignment.Center;
campoNoticias.SelectionColor = Color.Coral;
campoNoticias.SelectedText = "Citas";
campoNoticias.SelectionFont = new System.Drawing.Font("TKTypeBold", 16F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
campoNoticias.SelectionColor = Color.White;
campoNoticias.AppendText("\nLa vida es aquello que te va sucediendo mientras te empeƱas en hacer otros planes");
campoNoticias.SelectionFont = new System.Drawing.Font("TKTypeMedium", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
campoNoticias.SelectionColor = Color.SteelBlue;
campoNoticias.AppendText("\nJohn Lennon (1940-1980)");
Is there any way to "convince" mono to show italic characters? Thanks a lot for your help.