It is straight-forward. Create an instance of the class and call its ShowDialog method.
FontDialog fontDialog1 = new FontDialog();
fontDialog1.ShowColor = true;
if(fontDialog1.ShowDialog() != DialogResult.Cancel )
{
textBox1.Font = fontDialog1.Font ;
textBox1.ForeColor = fontDialog1.Color;
}
textBox1.Text = 'this is a test';
Share with