建立資源:
在解決方案資源管理器中,以滑鼠右鍵按一下您的項目,然後選擇「屬性」。在「資源」標籤下,按一下第一個按鈕以選擇資源類型,然後選擇「圖示」。使用「新增資源」按鈕建立新圖示或匯入現有圖示。雙擊新增的資源以進行編輯。
使用資源:
要在程式碼中存取資源,請使用 Properties.Resources 靜態類別。例如:
<code class="language-csharp">using System.Drawing; // 加载“RedIcon”资源 Image redIcon = Properties.Resources.RedIcon; // 将 NotifyIcon 的图标设置为加载的资源 notifyIcon.Icon = redIcon;</code>
要動態變更圖標,請將新資源指派給 NotifyIcon 的 Icon 屬性:
<code class="language-csharp">paused = !paused; if (paused) notifyIcon.Icon = Properties.Resources.RedIcon; else notifyIcon.Icon = Properties.Resources.GreenIcon;</code>
以上是如何在 .NET 中建立和使用資源?的詳細內容。更多資訊請關注PHP中文網其他相關文章!