寻找如何制作我自己的 MessageBox 示例代码
寻找如何使我自己的 MessageBox 示例代码变得
简单,包含标题、正文和是/否按钮
以及如何使用它,
提前致谢
looking for how to make my own MessageBox sample code
something simple that has title, body text and yes/no button
and how to use it
thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有一个内置方法可以实现此目的。它将自动在屏幕上显示一个消息框,其中包含您指定的参数。例如,以下代码行:
将生成一个如下所示的消息框:
您还可以使用不同的重载为消息框指定图标
MessageBox.Show函数
。例如:
图标值的完整列表可在 此处获取。
MessageBox.Show
函数的返回值是一个DialogResult
值 对应于在消息框中单击的按钮。通过检查返回值,您可以确定用户选择了哪个操作过程。例如:There is a built-in method for this. It will automatically display a message box on screen with your specified parameters. For example, the following line of code:
will produce a message box that looks like this:
You can also specify an icon for your message box using a different overload of the
MessageBox.Show
function. For example:The complete list of icon values is available here.
The return value of the
MessageBox.Show
function is aDialogResult
value corresponding to the button that was clicked on the message box. By checking the return value, you can determine which course of action was chosen by the user. For example:您可以创建自定义对话框,如下所示:
http://www.codeproject.com/KB /cs/A_Custom_Message_Box.aspx
You can create custom dialog boxes as given here:
http://www.codeproject.com/KB/cs/A_Custom_Message_Box.aspx