单击一次替代图标位置
是否有单击一次即可推送多个快捷方式的功能? (例如桌面、启动菜单等)过去,我总是将其作为已部署应用程序的表单加载事件的一部分(安装会触发应用程序启动 - 因此我可以使用表单加载来完成设置)过程)。 不过我想知道这是否是最好的解决方案。
Is there any features inside click-once to push multiple shortcuts? (Such as to desktop, Startup Menu, etc) In the past I've always done that as part of the form load event of my deployed application (installation triggers the application to launch--thus I can use form load to complete the setup process). I'm wondering however if that's the best solution.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法使用 ClickOnce 创建任意快捷方式。 您拥有的唯一附加选项是“发布”->“创建桌面快捷方式”。 清单下的选项对话框。
与让应用程序在运行时创建快捷方式一样:我不会这样做,因为您正在对系统进行更改,而这些更改未作为安装包的一部分进行拾取。 因此,卸载应用程序时,您可能会留下孤立的文件。
You cannot create arbitrary shortcuts with ClickOnce. The only additional option you have is "Create desktop shortcut" in the Publish -> Options dialog under Manifests.
As with having the application create shortcuts during runtime: I would not do this since you are making changes to the system that is not picked up as part of the installation package. Thus, when uninstalling the application you will probably leave orphaned files.