我们如何使用文件关联设置中的 ProgID 列?

发布于 2024-08-29 20:09:57 字数 115 浏览 6 评论 0原文

我正在使用 ClickOnce 部署我的应用程序。

我想注册文件关联,但无法使其工作:在发布选项的文件关联部分中我应该使用什么作为ProgID

I'm deploying my application using ClickOnce.

I want to register a file association but I can't manage to make it work: What should I use as ProgID in the File Associations section of the Publish Options?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦归所梦 2024-09-05 20:09:57

它是唯一标识文件类型的名称。因此,描述可能是“使用 Microsoft Word 创建的文档”,ProgID 可能是“Word”。如果您的应用程序名称很短,您可以将其放在那里。如果您的应用程序名称不短,请输入它的一些缩写。

It's a name that uniquely identifies the file type. So a description might be "Document created with Microsoft Word" and the ProgID might be "Word". If your app name is short, you can just put that in there. If your app name isn't short, put in some abbreviation of it.

围归者 2024-09-05 20:09:57

注册表子项的一些示例
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\ ~ \OpenWithProgids

  • .bmp - Paint.Picture
  • .csproj - VisualStudio.Launcher.csproj.15.0
  • .csv - Excel.CSV
  • .docx - <代码>Word.Document.12
  • .mp4 - WMP11.AssocFile.MP4

Some examples from the registry subkeys
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\ ~ \OpenWithProgids:

  • .bmp - Paint.Picture
  • .csproj - VisualStudio.Launcher.csproj.15.0
  • .csv - Excel.CSV
  • .docx - Word.Document.12
  • .mp4 - WMP11.AssocFile.MP4
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文