How To Use Font Dialog

We use Font Dialog to change our typing style.
Its too easy too use.
What do we need is 1 Font Dialog, 1 Button and 1 RichTextBox.

Into our button :
DialogResult result = fontDialog1.ShowDialog();
if (result == DialogResult.OK)
{
richTextBox1.Font= fontDialog1.Font;
}