您好,登錄后才能下訂單哦!
圖標字體包含符號而不是數字和字母。在Web技術中,與其他圖像格式相比,圖標字體占主導地位。由于它們是矢量圖形,體積小、易于裝載,因此用戶可以在不降低質量的情況下上下縮放。但唯一的限制就是單個圖標只能用一種顏色繪制。
相信每一位小伙伴都會經常都有這樣的疑問:可以在桌面應用程序Essential Studio for Windows Forms中使用圖標字體嗎?答案是肯定的!本文就為你講解具體的操作方法。
首先,請記住,在DPI的情況下,我們只需要改變字體大小,不需要為不同的DPI縮放維護不同大小的圖像。
如何添加和繪制圖標字體
系統中通常可用的字體(如Arial、Times New Roman)可能沒有我們需要在應用程序中使用的圖標,但有許多支持創建圖標字體的在線和離線應用程序。Syncfusion就免費提供了一個名為Metro Studio的離線工具。
為了演示,我們創建了一個.ttf文件,其中包含一個名為“WF Fabric”的字體系列。結果圖標如下圖所示。
△ 來自WF Fabric.ttf文件的圖標字體
*注意:上圖中顯示的Unicode(e700,e701等)表示在應用程序中繪制時的相應字形。
在WinForms應用程序中包含WF Fabric.ttf文件,并在屬性對話框中將其Build Action標記為Embedded Resource。
△ WF Fabric.ttf文件標記為嵌入式資源
在表單初始化期間,包括在系統內存中注冊圖標字體的代碼。與其他字體(Arial、Times New Roman等)一樣,WF Fabric也將在控制面板\所有控制面板項\字體的系統內存中注冊。
public?Form1()<font></font> {<font></font> ????InitializeComponent();<font></font> ????this.Paint?+=?Form1_Paint;<font></font> }<font></font> <font></font> private?void?Form1_Paint(object?sender,?PaintEventArgs?e)<font></font> {<font></font> ????PrivateFontCollection?pfc?=?new?PrivateFontCollection();<font></font> ????//Extracting?icon?fonts?from?the?WF?Fabric.ttf?file?and?adding?into?system?memory.<font></font> ????Stream?fontAsStream?=?this.GetType().Assembly.GetManifestResourceStream("WindowsFormsApp1.WF?Fabric.ttf");<font></font> ????byte[]?fontAsByte?=?new?byte[fontAsStream.Length];<font></font> ????fontAsStream.Read(fontAsByte,?0,?(int)fontAsStream.Length);<font></font> ????fontAsStream.Close();<font></font> ????IntPtr?memPointer?=?System.Runtime.InteropServices.Marshal.AllocHGlobal(System.Runtime.InteropServices.Marshal.SizeOf(typeof(byte))?*?fontAsByte.Length);<font></font> ????System.Runtime.InteropServices.Marshal.Copy(fontAsByte,?0,?memPointer,?fontAsByte.Length);<font></font> ????pfc.AddMemoryFont(memPointer,?fontAsByte.Length);<font></font> }<font></font>
著至關重要的作用。pfc對象中的Families屬性將保存已保存的字體系列名稱。如上所述,我們創建了WF Fabric.ttf,其字體系列名稱為WF Fabric。下載Essential Studio for Windows Forms最新版
現在創建一個枚舉,其中包含具有相應名稱的所有圖標字體,并為其Unicode指定前綴0x。因此,無論您使用圖標字體繪制何處,Unicode都將轉換為字符串并作為參數傳遞給DrawString方法。
public?partial?class?Form1?:?Form<font></font> {<font></font> ????public?Form1()<font></font> ????{<font></font> ????????InitializeComponent();<font></font> ????????this.Paint?+=?Form1_Paint;<font></font> ????}<font></font> <font></font> ????private?void?Form1_Paint(object?sender,?PaintEventArgs?e)<font></font> ????{<font></font> ????????PrivateFontCollection?pfc?=?new?PrivateFontCollection();<font></font> ????????//Extracting?icon?fonts?from?the?WF?Fabric.ttf?file?and?inserting?into?system?memory.<font></font> ????????Stream?fontAsStream?=?this.GetType().Assembly.GetManifestResourceStream("WindowsFormsApp1.WF?Fabric.ttf");<font></font> ????????byte[]?fontAsByte?=?new?byte[fontAsStream.Length];<font></font> ????????fontAsStream.Read(fontAsByte,?0,?(int)fontAsStream.Length);<font></font> ????????fontAsStream.Close();<font></font> ????????IntPtr?memPointer?=?System.Runtime.InteropServices.Marshal.AllocHGlobal(System.Runtime.InteropServices.Marshal.SizeOf(typeof(byte))?*?fontAsByte.Length);<font></font> ????????System.Runtime.InteropServices.Marshal.Copy(fontAsByte,?0,?memPointer,?fontAsByte.Length);<font></font> ????????pfc.AddMemoryFont(memPointer,?fontAsByte.Length);<font></font> <font></font> ????????//Icon?font's?unicode?"0xe700"?is?converted?to?string?and?drawn?using?e.Graphics?with?WF?Fabric?set?as?font?family.?<font></font> ????????string?iconChar?=?char.ConvertFromUtf32(IconFont.LastArrow);<font></font> ????????Font?iconFont?=?new?Font(pfc.Families[0],?18.5f,?FontStyle.Bold);<font></font> ????????e.Graphics.DrawString(iconChar,?iconFont,?new?SolidBrush(Color.Orange),?new?PointF(10,?10));<font></font> <font></font> ????????//Icon?font's?unicode?"0xe710"?is?converted?to?string?and?drawn?using?e.Graphics?with?WF?Fabric?set?as?font?family.<font></font> ????????iconChar?=?char.ConvertFromUtf32(IconFont.Plus);<font></font> ????????e.Graphics.DrawString(iconChar,?iconFont,?new?SolidBrush(Color.Red),?new?PointF(40,?40));<font></font> <font></font> ????????//Icon?font's?unicode?"0xe720"?is?converted?to?string?and?drawn?using?e.Graphics?with?WF?Fabric?set?as?font?family.<font></font> ????????iconChar?=?char.ConvertFromUtf32(IconFont.Paint);<font></font> ????????e.Graphics.DrawString(iconChar,?iconFont,?new?SolidBrush(Color.Green),?new?PointF(70,?70));<font></font> ????}<font></font> }<font></font> <font></font> public?static?class?IconFont<font></font> {<font></font> ????//0xe700,?0xe710,?0xe720?-?are?icon?font's?unicode?from?the?WF?Fabric.ttf?file.<font></font> ????public?static?int?LastArrow?=?0xe700;<font></font> ????public?static?int?Plus?=?0xe710;<font></font> ????public?static?int?Paint?=?0xe720;<font></font> }<font></font>
現在是在實際場景中應用圖標字體的時候了。我們準備了一個簡單的演示,它顯示了在自定義按鈕控件上繪制的第一頁、最后一頁、上一頁和下一頁的導航圖標。
參考示例:使用圖標字體在WinForms按鈕控件上呈現圖標
△ 自定義按鈕控制與圖標字體和文本繪制在里面
使用圖標字體的優點是:
改進了所有字體大小的渲染質量;
通過改變顏色為不同的主題和皮膚重用單個圖標字體;
通過不必相對于DPI縮放維持不同的圖像大小來減小應用程序大小;
添加多個圖標字體以及用字母、數字和符號連接圖標字體。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。