在 .NET 中產生應用程式捷徑並不總是直觀的。 vbAccelerator 中的 ShellLink.cs
類別提供了一種簡化的方法,提供了一個優雅的解決方案,而不依賴 WSH。
以下是如何使用 ShellLink 輕鬆建立捷徑:
<code class="language-csharp">private static void configStep_addShortcutToStartupGroup() { using (ShellLink shortcut = new ShellLink()) { shortcut.Target = Application.ExecutablePath; shortcut.WorkingDirectory = Path.GetDirectoryName(Application.ExecutablePath); shortcut.Description = "My Shortcut Name Here"; shortcut.DisplayMode = ShellLink.LinkDisplayMode.edmNormal; shortcut.Save(STARTUP_SHORTCUT_FILEPATH); } }</code>
這個簡潔的程式碼片段建立並儲存一個捷徑,定義其目標、工作目錄、描述和顯示模式。 ShellLink 類別簡化了該過程,允許在任何指定位置輕鬆建立捷徑。
以上是如何使用 ShellLink 類別在 .NET 中輕鬆建立應用程式捷徑?的詳細內容。更多資訊請關注PHP中文網其他相關文章!