Windows窗体:无法正确显示字体资源

时间:2010-12-16 20:04:46

标签: c# winforms resources fonts privatefontcollection

已将TrueType字体添加到我的项目资源(“MyFontResource”),并且我已将构建操作设置为“资源”。我的目的是用这个资源替换Label对象上的字体。

这是我的代码:

PrivateFontCollection myFonts = new PrivateFontCollection();
unsafe {
    fixed (byte* fontBytes = Properties.Resources.MyFontResource)
        myFonts.AddMemoryFont((IntPtr)fontBytes, Properties.Resources.MyFontResource.Length);
}
myLabel.Font = new Font(myFonts.Families[0], 10f);

只有在本地安装了字体时,字体才会显示。如果我没有安装该字体,那么我会在C#项目中看到最初分配给myLabel的字体。

现在是什么?

1 个答案:

答案 0 :(得分:3)

没关系,发现这不起作用的原因here

这是一个有效的解决方案(原始代码here):

class MyClass {
    [DllImport("gdi32.dll")]
    private static extern IntPtr AddFontMemResourceEx(IntPtr pbFont, uint cbFont, IntPtr pdv, [In] ref uint pcFonts);

    public MyClass() {
        uint installCount = 1;
        PrivateFontCollection myFonts = new PrivateFontCollection();
        unsafe {
            fixed (byte* pFontData = Properties.Resources.MyFont) {
                myFonts.AddMemoryFont((IntPtr)pFontData, Properties.Resources.MyFont.Length);
                AddFontMemResourceEx((IntPtr)pFontData, (uint)Properties.Resources.MyFont.Length, IntPtr.Zero, ref installCount);
            }
        }
        myLabel.Font = new Font(myFonts.Families[0], 20f);
    }
}