Get and Display All Installed Fonts using C#

This is a continuation of my other tutorial in C# entitled Get and Display all COM Ports using C#. But here in this tutorial, we will going to create a program that will get and display the installed fonts in your computer. So, now let's start this tutorial! 1. Let's start with creating a Windows Form Application in C# for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application. 2. Next, add only one ListBox named ListBox1 that can hold the values of our installed fonts. Then add a button named Button1 labeled as "Get Fonts" for us to display the fonts in the ListBox. You must design your interface like this: design 3. Now, in your code tab, use the namespace System.Drawing.Text and put it to the top most part so that it can call the InstalledFontCollection method.
  1. using System.Windows.Forms;
  2. using System.Collections;
  3. using System.Drawing;
  4. using System.Data;
  5. using System.Collections.Generic;
  6.  
  7.  
  8. using System.Drawing.Text;
4. Now, put this code in Button1_Click. This will trigger to put all the installed fonts in the ListBox. We will initialize f as a variable which will hold and instantiate all the installed font values using the InstalledFontCollection method.
  1. InstalledFontCollection f = new InstalledFontCollection();
Next, we will have a code using For Each Loop statement so that all the fonts will be displayed in the ListBox. We will have the syntax of For Each font As FontFamily In f.Families which means that we declare variable font as the FontFamily of the f as the InstalledFontColletion. Then all the fonts that was looped is displayed in our ListBox1.
  1. foreach (FontFamily font in f.Families)
  2.                         {
  3.                                 ListBox1.Items.Add(font.Name);
  4.                         }
Full source code:
  1. using System.Diagnostics;
  2. using System;
  3. using System.Windows.Forms;
  4. using System.Collections;
  5. using System.Drawing;
  6. using System.Data;
  7. using System.Collections.Generic;
  8.  
  9.  
  10. using System.Drawing.Text;
  11.  
  12. namespace Get_Installed_Fonts
  13. {
  14.         public partial class Form1
  15.         {
  16.                 public Form1()
  17.                 {
  18.                         InitializeComponent();
  19.                        
  20.                 }
  21.                
  22.                 public void Button1_Click(System.Object sender, System.EventArgs e)
  23.                 {
  24.                         InstalledFontCollection f = new InstalledFontCollection();
  25.                         foreach (FontFamily font in f.Families)
  26.                         {
  27.                                 ListBox1.Items.Add(font.Name);
  28.                         }
  29.                 }
  30.         }
  31.        
  32. }
Output: output Best Regards, Engr. Lyndon Bermoy IT Instructor/System Developer/Android Developer/Freelance Programmer If you have some queries, feel free to contact the number or e-mail below. Mobile: 09488225971 Landline: 826-9296 E-mail:[email protected] Add and Follow me on Facebook: https://www.facebook.com/donzzsky Visit and like my page on Facebook at: https://www.facebook.com/BermzISware

Add new comment