Select A Font With FontDialog Using C#
This example displays a font selection dialog box to select a font.
Usage:
//Usage:
FontDialog fontDialog = new FontDialog();
if (fontDialog.ShowDialog() == DialogResult.OK)
{
Font selectedFont = fontDialog.Font;
}