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

font-svg

时间:2017-07-13 14:18:39      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:cheat   icon   string   str   class   add   ttf   highlight   awesome   

https://fontawesome.com/

http://www.fontawesome.com.cn/cheatsheet/

http://www.iconfont.cn/

   string lj = System.IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "fontawesome-webfont.ttf");
            PrivateFontCollection pf = new PrivateFontCollection();
            pf.AddFontFile(lj);

            int x = Convert.ToInt32("F000", 16);
            int d = Convert.ToInt32("F2E0", 16);
            for (char i = ‘\uF000‘; i <= ‘\uF2E0‘; i++)
            {

                textBox1.Text += "[" + i.ToString() + "|" + Convert.ToString(i, 16).ToUpper() + "]";

            }



            textBox1.Font = new System.Drawing.Font(pf.Families[0], 18);

  

  button1.Text = "\uf171";
            button1.Font = new Font("FontAwesome", 30);


            label1.Text = "\uF00C";
         
            label1.Font = new Font("FontAwesome", 90);
            label1.BackColor = Color.Transparent;

            button2.ForeColor = Color.Green;

  

font-svg

标签:cheat   icon   string   str   class   add   ttf   highlight   awesome   

原文地址:http://www.cnblogs.com/xiangxiong/p/7160025.html

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