C#程序如何双击打开文件

发布于 2025-01-07 04:44:26 字数 97 浏览 0 评论 0原文

我有一个 C# 程序,它可以处理自己创建的文件。可以通过运行该程序然后通过 GUI 访问该文件来打开该文件。

如何打开文件而无需显式运行程序,只需双击相关文件即可?

I have a C# program which works with files created by itself. The file can be opened by running the program and then accessing it via the GUI.

How can I open the file without having to run the program explicitly and just by double clicking on the concerned file?

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

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

发布评论

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

评论(3

并安 2025-01-14 04:44:26

您必须在安装程序中添加注册表项,才能将程序的文件扩展名与应用程序关联起来。

以下是 MSDN 中的一篇文章,它将告诉您需要了解的有关文件关联的信息:文件关联如何工作

You have to add registry entries in your installer to associate your program's file extension with your application.

Here is an article in MSDN that will tell you what you need to know about file associations: How File Associations Work

明媚殇 2025-01-14 04:44:26

通常,您会在安装时执行此操作,如果您不使用安装程序或 ClickOnce,那么您可以通过代码执行此操作,但您必须在注册表中进行操作: http://mel-green.com/2009/04/c-set-file-type-association/< /a>

Typically you'd do this with your install, if you're not using an installer or ClickOnce, then you can do it from code, but you have to muck about in the registry: http://mel-green.com/2009/04/c-set-file-type-association/

风透绣罗衣 2025-01-14 04:44:26

您询问如何 将文件类型与您的应用程序关联起来。您可以通过使用 C# 将条目添加到注册表来完成此操作。

You're asking how to associate a file type with your application. You can do this by adding entries to the registry using C#.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文