Gör så här: Räkna upp installerade teckensnitt
Klassen InstalledFontCollection ärver från den FontCollection abstrakta basklassen. Du kan använda ett InstalledFontCollection-objekt för att räkna upp teckensnitten som är installerade på datorn. Egenskapen Families för ett InstalledFontCollection objekt är en matris med FontFamily objekt.
Exempel
I följande exempel visas namnen på alla teckensnittsfamiljer som är installerade på datorn. Koden hämtar egenskapen Name för varje FontFamily objekt i matrisen som returneras av egenskapen Families. När familjenamnen hämtas sammanfogas de för att bilda en kommaavgränsad lista. Sedan ritar metoden DrawString i klassen Graphics en kommaavgränsad lista i en rektangel.
Om du kör exempelkoden liknar utdata som visas i följande bild:
FontFamily fontFamily = new FontFamily("Arial");
Font font = new Font(
fontFamily,
8,
FontStyle.Regular,
GraphicsUnit.Point);
RectangleF rectF = new RectangleF(10, 10, 500, 500);
SolidBrush solidBrush = new SolidBrush(Color.Black);
string familyName;
string familyList = "";
FontFamily[] fontFamilies;
InstalledFontCollection installedFontCollection = new InstalledFontCollection();
// Get the array of FontFamily objects.
fontFamilies = installedFontCollection.Families;
// The loop below creates a large string that is a comma-separated
// list of all font family names.
int count = fontFamilies.Length;
for (int j = 0; j < count; ++j)
{
familyName = fontFamilies[j].Name;
familyList = familyList + familyName;
familyList = familyList + ", ";
}
// Draw the large string (list of all families) in a rectangle.
e.Graphics.DrawString(familyList, font, solidBrush, rectF);
Dim fontFamily As New FontFamily("Arial")
Dim font As New Font( _
fontFamily, _
8, _
FontStyle.Regular, _
GraphicsUnit.Point)
Dim rectF As New RectangleF(10, 10, 500, 500)
Dim solidBrush As New SolidBrush(Color.Black)
Dim familyName As String
Dim familyList As String = ""
Dim fontFamilies() As FontFamily
Dim installedFontCollection As New InstalledFontCollection()
' Get the array of FontFamily objects.
fontFamilies = installedFontCollection.Families
' The loop below creates a large string that is a comma-separated
' list of all font family names.
Dim count As Integer = fontFamilies.Length
Dim j As Integer
While j < count
familyName = fontFamilies(j).Name
familyList = familyList & familyName
familyList = familyList & ", "
j += 1
End While
' Draw the large string (list of all families) in a rectangle.
e.Graphics.DrawString(familyList, font, solidBrush, rectF)
Kompilera koden
Föregående exempel är utformat för användning med Windows Forms och kräver PaintEventArgse
, som är en parameter för PaintEventHandler. Dessutom bör du importera System.Drawing.Text namnområdet.
Se även
.NET Desktop feedback