我有一类字体,如:
namespace Project.Utility
{
public class Fonts
{
public Font TitleFont()
{
var font = new Font("Arial", 12, FontStyle.Bold);
return font;
}
public Font SubtitleFont()
{
var font = new Font("Arial", 8, FontStyle.Italic);
return font;
}
public Font TotalMinutesFont()
{
var font = new Font("Arial", 8, FontStyle.Regular);
return font;
}
}
}
所以进入另一个类,我想像这样调用字体方法:
using Project.Utility;
private void MyMethod(){
title.Font = Fonts.TitleFont;
}
但我无权访问.TitleFont如何调用它以访问此方法?问候
手掌心
三国纷争
相关分类