본문 바로가기
→ 개발/WPF

[WPF] 각종 컨트롤 글꼴 설정하기

by 벅스쭌 2010. 7. 11.
반응형

Label label = new Label();
label.FontFamily = new FontFamily("맑은고딕");
TextBox textbox = new TextBox();
textbox.FontFamily = new FontFamily("맑은고딕");
Button button = new Button();
button.FontFamily = new FontFamily("맑은고딕");

반응형