使用Visual Studio 2012 Ultimate C#.NET4.5
好吧,这已经让我的大脑腐烂了,我对一些代码进行了一些调整,以将字体嵌入到我的应用程序中。到目前为止效果很好,所以我的客户端机器不再需要字体。
到目前为止,这是我的代码:
//add font
[DllImport("gdi32.dll", ExactSpelling = true)]
private static extern IntPtr AddFontMemResourceEx(byte[] pbFont, int cbFont, IntPtr pdv, out uint pcFonts);
/****/
//Dispose Font
[DllImport("gdi32.dll", ExactSpelling = true)]
internal static extern bool RemoveFontMemResourceEx(IntPtr fh);
/****/
static private IntPtr m_fh = IntPtr.Zero;
static private PrivateFontCollection m_pfc = null;
public Font GtSpecialFont(float size)
{
Font fnt = null;
if (null == m_pfc)
{
Stream stmFnt = Assembly.GetExecutingAssembly().GetManifestResourceStream("NewLabelPrinter.Resources.FREE3OF9.TTF"); // always returns null?
if (null != stmFnt)
{
byte[] rgbyt = new byte[stmFnt.Length];
stmFnt.Read(rgbyt, 0, rgbyt.Length);
uint cFonts;
AddFontMemResourceEx(rgbyt, rgbyt.Length, IntPtr.Zero, out cFonts);
IntPtr pbyt = Marshal.AllocCoTaskMem(rgbyt.Length);
if (null != pbyt)
{
Marshal.Copy(rgbyt, 0, pbyt, rgbyt.Length);
m_pfc = new PrivateFontCollection();
m_pfc.AddMemoryFont(pbyt, rgbyt.Length);
Marshal.FreeCoTaskMem(pbyt);
}
}
}
try
{
if (m_pfc.Families.Length > 0)
{
fnt = new Font(m_pfc.Families[0], size);
}
}
catch (Exception rdf)
{
MessageBox.Show("", rdf.ToString());
}
return fnt;
}
private void myFont()
{
txtBarCal.Font = GtSpecialFont(48.0f);
txtBarCodeOLD.Font = GtSpecialFont(48.0f);
txtBarCV.Font = GtSpecialFont(48.0f);
txtBarBK.Font = GtSpecialFont(48.0f);
txtNewBar.Font = GtSpecialFont(48.0f);
}
正如你所看到的,这段代码非常好,我很喜欢它完美地工作。现在我的表单终于可以在我的客户不需要它们的情况下拥有字体了。
有一个小问题,我到底如何使用它来设置 Visual Studio报告文本框字体????报告没有代码,所以我完全不知所措!
好吧,我希望某个地方的某个人知道一些事情,我能想到的唯一事情就是与使用表达式和/或可能的参数有关。
非常感谢你们!