码迷,mamicode.com
首页 > 其他好文 > 详细

如何让客户端没有字体也能访问这类型的字体类型

时间:2014-10-23 01:16:42      阅读:88      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   ar   for   sp   div   on   log   

            PrivateFontCollection p_Font = new PrivateFontCollection();
            byte[] b_Font = new byte[WindowsFormsApplication1.Properties.Resources.impact.Length];
            IntPtr MeAdd = Marshal.AllocHGlobal(Marshal.SizeOf(typeof(byte)) * b_Font.Length);
            Marshal.Copy(WindowsFormsApplication1.Properties.Resources.impact, 0, MeAdd, WindowsFormsApplication1.Properties.Resources.impact.Length);
            p_Font.AddMemoryFont(MeAdd, b_Font.Length);
            labelX1.Font = new Font(p_Font.Families[0], 18, FontStyle.Bold | FontStyle.Regular);

  其中WindowsFormsApplication1表示程序集 

  labelX1表示的控件

如何让客户端没有字体也能访问这类型的字体类型

标签:style   blog   io   ar   for   sp   div   on   log   

原文地址:http://www.cnblogs.com/liujie1111/p/4044727.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!