2 回答
TA贡献1942条经验 获得超3个赞
添加我在评论中所说的内容以及 Piotr 在他的回答中开始的内容。我建议将Fonts类更改为静态(因为它的所有方法都不依赖于状态)。
public static class Fonts
{
public static Font TitleFont()
{
var font = new Font("Arial", 12, FontStyle.Bold);
return font;
}
public static Font SubtitleFont()
{
var font = new Font("Arial", 8, FontStyle.Italic);
return font;
}
public static Font TotalMinutesFont()
{
var font = new Font("Arial", 8, FontStyle.Regular);
return font;
}
}
然后,您可以Fonts使用您在示例中提供的语法来访问这些方法。
TA贡献1804条经验 获得超7个赞
使方法TitleFont静态
public static Font TitleFont()
{
return new Font("Arial", 12, FontStyle.Bold);
}
然后做:
using Project.Utility;
private void MyMethod(){
title.Font = Fonts.TitleFont();
}
- 2 回答
- 0 关注
- 182 浏览
添加回答
举报