你说的是点击messagebox上的按钮的反回值吧,返回类型是DialogResult,是一个枚举类型,以下是摘自DialogResult类,可以看看:
namespace System.Windows.Forms
{
// 摘要:
// 指定标识符以指示对话框的返回值。
[ComVisible(true)]
public enum DialogResult
{
// 摘要:
// 从对话框返回了 Nothing。这表明有模式对话框继续运行。
None = 0,
//
// 摘要:
// 对话框的返回值是 OK(通常从标签为“确定”的按钮发送)。
OK = 1,
//
// 摘要:
// 对话框的返回值是 Cancel(通常从标签为“取消”的按钮发送)。
Cancel = 2,
//
// 摘要:
// 对话框的返回值是 Abort(通常从标签为“中止”的按钮发送)。
Abort = 3,
//
// 摘要:
// 对话框的返回值是 Retry(通常从标签为“重试”的按钮发送)。
Retry = 4,
//
// 摘要:
// 对话框的返回值是 Ignore(通常从标签为“忽略”的按钮发送)。
Ignore = 5,
//
// 摘要:
// 对话框的返回值是 Yes(通常从标签为“是”的按钮发送)。
Yes = 6,
//
// 摘要:
// 对话框的返回值是 No(通常从标签为“否”的按钮发送)。
No = 7,
}
}
微软提供查看类的方式,虽然看不到源代码,但可以知道一下类的结构,选中类名F12就可以转到了,很有用的 |