728x90
728x170
using System.Drawing.Text;
using (InstalledFontCollection fontsCollection = new InstalledFontCollection())
{
FontFamily[] fontFamilies = fontsCollection.Families;
List<string> fonts = new List<string>();
foreach (FontFamily font in fontFamilies)
{
fonts.Add(font.Name);
}
}
728x90
그리드형
'C# > Winform' 카테고리의 다른 글
[C#] 캡쳐 방지하기 (0) | 2020.05.21 |
---|---|
[C#] 호출자 정보 알아내기 (0) | 2020.05.20 |
IIS 에 ASP.NET 등록방법 (0) | 2020.02.07 |
간단한 Web API 만들기 (0) | 2020.02.07 |
[C#] 특정위치의 exe 파일의 실행 프로세스를 Kill 하는 코드 (0) | 2020.02.04 |