I thought a good way to learn C# would be to re-write all the VB.NET apps i've already written. To start small, i went with a RichText editor, but i can't get the font dialog to work. It shows up, but it won't change the text. Heres the code im using:

VB Code:
  1. private void fontDialog1_Apply(object sender, System.EventArgs e)
  2.         {
  3.             rtb.SelectionFont = fontDialog1.Font;
  4.         }