ユーザーコントロールを作成しているアプリケーションがあり、そのために、次のようなフォントを再利用するクラスを定義しました。
public sealed class MyFonts
{
private static Font Tahoma7Regular = new Font("Tahoma", 7, FontStyle.Regular);
private static Font Tahoma9Regular = new Font("Tahoma", 9, FontStyle.Regular);
private static Font Tahoma9Bold = new Font("Tahoma", 9, FontStyle.Bold);
public static Font ChannelText = new Font("Tahoma", 12, FontStyle.Bold);
public static Font ClockText = Tahoma7Regular;
public static Font HelpText = Tahoma9Regular;
public static Font RollFieldText = Tahoma9Bold;
}
それを改善する方法はありますかBrushes
、逆コンパイラツールでクラスを見ましたが、彼らはThreadData
私が知らないと呼ばれるものを使用していますが、簡単にするためにこのコードも改善できますか?