消息框上的打开按钮

发布于 2024-11-19 04:55:54 字数 338 浏览 2 评论 0原文

我有一个 WinForms 应用程序,当它完成运行时,会显示一个消息框,其中只有一个“确定”按钮。

消息框上是否也可以有一个“打开”按钮?

我在网上找到了这段代码:

public static DialogResult Show(string text, string caption, MessageBoxButtons buttons);

但它只给出了基本命令,例如是/否确定/取消等。它没有显示任何打开按钮。

我想在程序完成运行后打开一个文本文件。

任何帮助将不胜感激。

I have a WinForms application, and when it is finished running, displays a message box with just an OK button.

Is it possible to have an OPEN button on the message box too?

I found this code online:

public static DialogResult Show(string text, string caption, MessageBoxButtons buttons);

But it only gives basic commands, like Yes / No, OK / Cancel, etc. It doesn't show any open button.

I want to OPEN a text file after my program has finished running.

Any help would be greatly appreciated.

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

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

发布评论

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

评论(2

日裸衫吸 2024-11-26 04:55:57

MessageBox.Show 方法公开了一些重载。您可以根据需要使用其中之一。要调用 MessageBox,只需执行以下行:

MessageBox.Show("Hi");

您可以在 MSDN 上找到相关信息。

The MessageBox.Show methods exposes serval overloads. You can use one of them as you like. To invoke a MessageBox, simply execute following line:

MessageBox.Show("Hi");

For information you can find on MSDN.

゛时过境迁 2024-11-26 04:55:56

不可以,除了默认值之外,消息框中不能有任何其他值,MessageBoxButtons 是预定义的enum,您无法添加到其中。解决方案是使用一些自定义消息框,选中 this,或者实现您自己的 MessageBoxForm 并添加您的对其进行自定义设置,请检查

No, you can't have any other values in a message box rather than the default, the MessageBoxButtons is predefined enum and you can't add to it. The solution is either use some custom message box, check this, or implement your own MessageBoxForm and add your custom settings to it, check this.

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