收藏 分享(赏)

C#弹出的各种对话框.doc

上传人:gnk289057 文档编号:9467962 上传时间:2019-08-09 格式:DOC 页数:7 大小:37KB
下载 相关 举报
C#弹出的各种对话框.doc_第1页
第1页 / 共7页
C#弹出的各种对话框.doc_第2页
第2页 / 共7页
C#弹出的各种对话框.doc_第3页
第3页 / 共7页
C#弹出的各种对话框.doc_第4页
第4页 / 共7页
C#弹出的各种对话框.doc_第5页
第5页 / 共7页
点击查看更多>>
资源描述

1、C#弹出的各种对话框using System;using System.Data;using System.Configuration;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.WebControls.WebParts;using System.Web.UI.HtmlControls;using System.Windows.Forms;/ / Dialog 的摘要说明/ public class Dialo

2、gpublic Dialog()/ TODO: 在此处添加构造函数逻辑/ / 显示提示消息/ / 内容public static void ShowInfo(object msg)System.Windows.Forms.MessageBox.Show(msg.ToString(), “消息“, MessageBoxButtons.OK, MessageBoxIcon.Information);/ / 显示错误信息/ / 内容public static void ShowError(object msg)System.Windows.Forms.MessageBox.Show(msg.ToSt

3、ring(), “错误“, MessageBoxButtons.OK, MessageBoxIcon.Error);/ / 显示警告信息/ / 内容public static void ShowWarning(object msg)System.Windows.Forms.MessageBox.Show(msg.ToString(), “警告“, MessageBoxButtons.OK, MessageBoxIcon.Warning);/ / 显示 YES,NO 对话框/ / Question Content/ bool值public static bool ShowQuestionYesN

4、o(object msg)DialogResult dr = System.Windows.Forms.MessageBox.Show(msg.ToString(), “提示“, MessageBoxButtons.YesNo, MessageBoxIcon.Question);if (dr = DialogResult.Yes)return true;elsereturn false;/ / 显示 OkCancel提问对话框/ / Question Content/ bool值public static bool ShowQuestionOkCancel(object msg)DialogR

5、esult dr = System.Windows.Forms.MessageBox.Show(msg.ToString(), “提示“, MessageBoxButtons.OKCancel, MessageBoxIcon.Question);if (dr = DialogResult.OK)return true;elsereturn false;/ / 显示 YesNoCancel对话框/ / Question Content/ DialogResultpublic static DialogResult ShowQuestionYesNoCancel(object msg)return

6、 System.Windows.Forms.MessageBox.Show(msg.ToString(), “提示“, MessageBoxButtons.YesNoCancel, MessageBoxIcon.Question);using System;using System.Data;using System.Configuration;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.WebControls

7、.WebParts;using System.Web.UI.HtmlControls;using System.Windows.Forms;/ / Dialog 的摘要说明/ public class Dialogpublic Dialog()/ TODO: 在此处添加构造函数逻辑/ / 显示提示消息/ / 内容public static void ShowInfo(object msg)System.Windows.Forms.MessageBox.Show(msg.ToString(), “消息“, MessageBoxButtons.OK, MessageBoxIcon.Informat

8、ion);/ / 显示错误信息/ / 内容public static void ShowError(object msg)System.Windows.Forms.MessageBox.Show(msg.ToString(), “错误“, MessageBoxButtons.OK, MessageBoxIcon.Error);/ / 显示警告信息/ / 内容public static void ShowWarning(object msg)System.Windows.Forms.MessageBox.Show(msg.ToString(), “警告“, MessageBoxButtons.O

9、K, MessageBoxIcon.Warning);/ / 显示 YES,NO 对话框/ / Question Content/ bool值public static bool ShowQuestionYesNo(object msg)DialogResult dr = System.Windows.Forms.MessageBox.Show(msg.ToString(), “提示“, MessageBoxButtons.YesNo, MessageBoxIcon.Question);if (dr = DialogResult.Yes)return true;elsereturn false

10、;/ / 显示 OkCancel提问对话框/ / Question Content/ bool值public static bool ShowQuestionOkCancel(object msg)DialogResult dr = System.Windows.Forms.MessageBox.Show(msg.ToString(), “提示“, MessageBoxButtons.OKCancel, MessageBoxIcon.Question);if (dr = DialogResult.OK)return true;elsereturn false;/ / 显示 YesNoCancel对话框/ / Question Content/ DialogResultpublic static DialogResult ShowQuestionYesNoCancel(object msg)return System.Windows.Forms.MessageBox.Show(msg.ToString(), “提示“, MessageBoxButtons.YesNoCancel, MessageBoxIcon.Question);

展开阅读全文
相关资源
猜你喜欢
相关搜索
资源标签

当前位置:首页 > 企业管理 > 管理学资料

本站链接:文库   一言   我酷   合作


客服QQ:2549714901微博号:道客多多官方知乎号:道客多多

经营许可证编号: 粤ICP备2021046453号世界地图

道客多多©版权所有2020-2025营业执照举报