消息框上的打开按钮
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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.
不可以,除了默认值之外,消息框中不能有任何其他值,
MessageBoxButtons
是预定义的enum
,您无法添加到其中。解决方案是使用一些自定义消息框,选中 this,或者实现您自己的 MessageBoxForm 并添加您的对其进行自定义设置,请检查此。No, you can't have any other values in a message box rather than the default, the
MessageBoxButtons
is predefinedenum
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.