91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

在Essential Studio for WinForms應用程序中使用圖標字體

發布時間:2020-09-28 10:25:33 來源:網絡 閱讀:292 作者:qq5d2d9e539cdbb 欄目:軟件技術

圖標字體包含符號而不是數字和字母。在Web技術中,與其他圖像格式相比,圖標字體占主導地位。由于它們是矢量圖形,體積小、易于裝載,因此用戶可以在不降低質量的情況下上下縮放。但唯一的限制就是單個圖標只能用一種顏色繪制。

相信每一位小伙伴都會經常都有這樣的疑問:可以在桌面應用程序Essential Studio for Windows Forms中使用圖標字體嗎?答案是肯定的!本文就為你講解具體的操作方法。

首先,請記住,在DPI的情況下,我們只需要改變字體大小,不需要為不同的DPI縮放維護不同大小的圖像。

如何添加和繪制圖標字體

系統中通常可用的字體(如Arial、Times New Roman)可能沒有我們需要在應用程序中使用的圖標,但有許多支持創建圖標字體的在線和離線應用程序。Syncfusion就免費提供了一個名為Metro Studio的離線工具。

為了演示,我們創建了一個.ttf文件,其中包含一個名為“WF Fabric”的字體系列。結果圖標如下圖所示。

在Essential Studio for WinForms應用程序中使用圖標字體

△ 來自WF Fabric.ttf文件的圖標字體

*注意:上圖中顯示的Unicode(e700,e701等)表示在應用程序中繪制時的相應字形。

在WinForms應用程序中包含WF Fabric.ttf文件,并在屬性對話框中將其Build Action標記為Embedded Resource。

在Essential Studio for WinForms應用程序中使用圖標字體

△ 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按鈕控件上呈現圖標

在Essential Studio for WinForms應用程序中使用圖標字體

△ 自定義按鈕控制與圖標字體和文本繪制在里面

使用圖標字體的優點是:

  • 改進了所有字體大小的渲染質量;

  • 通過改變顏色為不同的主題和皮膚重用單個圖標字體;

  • 通過不必相對于DPI縮放維持不同的圖像大小來減小應用程序大小;

  • 添加多個圖標字體以及用字母、數字和符號連接圖標字體。


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

永康市| 蓝田县| 灵璧县| 醴陵市| 景德镇市| 南昌县| 右玉县| 桂林市| 巴东县| 郎溪县| 桐庐县| 泽库县| 四会市| 资讯| 阿克陶县| 平凉市| 普格县| 肇东市| 四会市| 古丈县| 龙胜| 观塘区| 乌拉特后旗| 淅川县| 剑川县| 江达县| 故城县| 岫岩| 九江市| 普陀区| 资中县| 大荔县| 奉新县| 平江县| 大化| 巢湖市| 噶尔县| 遂平县| 安国市| 临颍县| 西贡区|