天天看點

winform使用字型圖示

阿裡icon

https://www.iconfont.cn/

winform使用字型圖示

選擇自己需要的圖示 加入購物車

winform使用字型圖示
winform使用字型圖示
winform使用字型圖示
winform使用字型圖示

下載下傳下來後打開壓縮包,複制擴充名是ttf的檔案到程式目錄下

寫一個工具類

private static System.Drawing.Text.PrivateFontCollection pfcc;

        public  static  System.Drawing.Text.PrivateFontCollection PFCC
        {
            get { return pfcc ?? LoadFont(); }
            set { pfcc = value; }
        }
 public static bool JzFont { get; private set; } = false;
 public static System.Drawing.Text.PrivateFontCollection LoadFont()
        {
            if(!JzFont)
            {
                pfcc = new System.Drawing.Text.PrivateFontCollection();
                pfcc.AddFontFile(Environment.CurrentDirectory + "/iconfont.ttf");
                JzFont = true;
            }
            return pfcc;
        }
           

使用如下

     &#x改成 \u

btnDPLTZ.Text =  "\ue9c6;" ;
btnDPLTZ.Font = new Font(PFCC.Families[0], 20);
btnDPLTZ.Appearance.ForeColor = bedInfo.DPLTZ ? Color.Red : Color.Black;