It is straightforward. Create an instance of the class and call its ShowDialog method.
FontDialog fontDialog1 = new FontDialog();
if ( fontDialog1.ShowDialog() != DialogResult.Cancel )
textBox1.Font = fontDialog1.Font ;
Contributed from George Shepherd's Windows Forms FAQ