これはばかげた質問かもしれませんが、コードビハインドでTextBox
からstring
のフォントを設定するにはどうすればよいですか。
// example
txtEditor.FontFamily = "Consolas";
txtEditor.FontFamily = new FontFamily("Consolas"); // the Media namespace
次の構文を使用します。
lblCounting.Font = new Font("Times New Roman", 50);
lblCounting
は単なるラベルです。
System.Drawing.Font = new Font("Arial", 8, FontStyle.Bold);
プログラムでグローバルに行う1つの簡単な方法:
public MainWindow()
{
this.FontFamily = new FontFamily("Segoe UI");
}
サンプルコードをInitializeComponent();
の直後のフォームのコンストラクターにコピーして貼り付けます
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
txtEditor.FontFamily = new FontFamily("Consolas");
}
}
TxtEditor.Font.Name = "Consolas";を使用します。