//路径
string AppPath = System.IO.Path.GetFullPath("../../font/AgencyFB.ttf");
//读取字体文件
PrivateFontCollection pfc = new PrivateFontCollection();
pfc.AddFontFile(AppPath);
//实例化字体样式
Font f = new Font(pfc.Families[0], 22);//设置字体样式
lblTime.Font = f;