728x90
728x170
Font 설정을 저장하고 불러오는 방법입니다.
프로그램에서 Font 종류나 크기, Style 등을 변경한 경우 이를 저장하고 다시 불러들일때 사용하면됩니다.
using System.ComponentModel;
using System.Drawing;
// 저장될 Font
Font savefont = new Font("Arial", 12, FontStyle.Italic);
// Font TypeConverter 정의
TypeConverter converter = TypeDescriptor.GetConverter(typeof(Font));
// Font 를 String 으로 변경
string fontString = converter.ConvertToString(savefont);
// String 값을 Font 로 변경
Font loadfont = (Font)converter.ConvertFromString(fontString);
728x90
그리드형
'C# > Winform' 카테고리의 다른 글
[C#/Winform] Screen Capture (0) | 2023.10.17 |
---|---|
[C#/Winform] ListBox 우클릭 시에도 선택되도록 하기 (0) | 2023.09.20 |
[C#] .NET6 Winform 에서 도구상자에 아무것도 안보일때 (0) | 2022.08.26 |
[C#] License Header Manager 사용하기 (0) | 2022.08.05 |
[C#] 업비트 API 사용하기 (0) | 2022.08.02 |