使用ShellLink.cs在C#中创建应用程序快捷方式
问题:
如何使用.NET框架在C#中以编程方式创建应用程序快捷方式(.lnk文件)?
解决方案:
虽然可能没有直接的方法,但来自vbAccelerator的ShellLink.cs类提供了一个强大的解决方案,它不依赖于WSH。
实现:
使用此类,您可以按如下方式创建快捷方式:
<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 = "我的快捷方式名称"; shortcut.DisplayMode = ShellLink.LinkDisplayMode.edmNormal; shortcut.Save(STARTUP_SHORTCUT_FILEPATH); } }</code>
ShellLink.cs的优势:
以上是如何在 C# 中以编程方式创建应用程序快捷方式?的详细内容。更多信息请关注PHP中文网其他相关文章!