c dialogresult DialogResult DialogResult-语法,DialogResult-成员

DialogResult,程序函数,是指指定标识符以指示对话框的返回值。

DialogResult

指定标识符以指示对话框的返回值。
命名空间: System.Windows.Forms
程序集: System.Windows.Forms(在 system.windows.forms.dll 中)

dialogresult_DialogResult -语法


Visual Basic(声明)
_
Public Enumeration DialogResultVisual Basic (用法)
Dim instance As DialogResultC#
[ComVisibleAttribute(true)]
public enum DialogResultC++
[ComVisibleAttribute(true)]
public enum class DialogResultJ#
/** @attribute ComVisibleAttribute(true) */
public enum DialogResultJScript
ComVisibleAttribute(true)
public enum DialogResult

dialogresult_DialogResult -成员

c dialogresult DialogResult DialogResult-语法,DialogResult-成员


成员名称 说明
Abort 对话框的返回值是 Abort(通常从标签为“中止”的按钮发送)。
Cancel 对话框的返回值是 Cancel(通常从标签为“取消”的按钮发送)。
Ignore 对话框的返回值是 Ignore(通常从标签为“忽略”的按钮发送)。
No 对话框的返回值是 No(通常从标签为“否”的按钮发送)。
None 从对话框返回了 Nothing。这表明有模式对话框继续运行。
OK 对话框的返回值是 OK(通常从标签为“确定”的按钮发送)。
Retry 对话框的返回值是 Retry(通常从标签为“重试”的按钮发送)。
Yes 对话框的返回值是 Yes(通常从标签为“是”的按钮发送)。

dialogresult_DialogResult -备注

Button.DialogResult 属性和 Form.ShowDialog 方法使用此枚举。

dialogresult_DialogResult -示例


下面的代码示例演示如何使用受此 Show 重载支持的选项显示一个 MessageBox。验证字符串变量 ServerName 为空后,此示例显示一个 MessageBox,为用户提供取消该操作的选项。如果 Show 方法的返回值计算为 Yes,则将关闭显示 MessageBox 的窗体。

Visual Basic复制代码


Private Sub ValidateUserEntry5()

' Checks the value of the text.

If ServerName.Text.Length = 0 Then

' Initializes variables to pass to theMessageBox.Showmethod.

Dim Message As String = "You did not enter a server name. Cancel this operation?"
Dim Caption As String = "No Server Name Specified"
Dim Buttons As Integer = MessageBoxButtons.YesNo

Dim Result As DialogResult

'Displays a MessageBox using the Question icon and specifying the No button as the default.

Result = MessageBox.Show(Me, Message, Caption, MessageBoxButtons.YesNo)

' Gets the result of the MessageBox display.

If Result = System.Windows.Forms.DialogResult.Yes Then

' Closes the parent form.

Me.Close()

End If

End If

End Sub

C# 复制代码
private void validateUserEntry5()
{

// Checks the value of the text.

if(serverName.Text.Length == 0)
{

// Initializes the variables to pass to the MessageBox.Show method.

string message = "You did not enter a server name. Cancel this operation?";
string caption = "No Server Name Specified";
MessageBoxButtons buttons = MessageBoxButtons.YesNo;
DialogResult result;

// Displays the MessageBox.

result = MessageBox.Show(this, message, caption, buttons);

if(result == DialogResult.Yes)
{

// Closes the parent form.

this.Close();

}

}

}

C++ 复制代码
private:
void validateUserEntry5()
{
// Checks the value of the text.
if ( serverName->Text->Length == 0 )
{
// Initializes the variables to pass to the MessageBox::Show method.
String^ message = "You did not enter a server name. Cancel this operation?";
String^ caption = "No Server Name Specified";
MessageBoxButtons buttons = MessageBoxButtons::YesNo;
System::Windows::Forms::DialogResult result;

// Displays the MessageBox.
result = MessageBox::Show( this, message, caption, buttons );
if ( result == ::DialogResult::Yes )
{
// Closes the parent form.
this->Close();
}
}
}

J# 复制代码
private void ValidateUserEntry5()
{
// Checks the value of the text.
if (serverName.get_Text().get_Length() == 0) {
// Initializes the variables to pass to the MessageBox.Show method.
String message = "You did not enter a server name. "
+ "Cancel this operation?";
String caption = "No Server Name Specified";
MessageBoxButtons buttons = MessageBoxButtons.YesNo;
DialogResult result;

// Displays the MessageBox.
result = MessageBox.Show(this, message, caption, buttons);

if (result.Equals(DialogResult.Yes)) {
// Closes the parent form.
this.Close();
}
}
} //ValidateUserEntry5

dialogresult_DialogResult -平台

Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003,windows XP Media Center Edition,Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

Windows Vista、Microsoft Windows XP SP2 和 Windows Server 2003 SP1 支持 Microsoft .NET Framework 3.0。

  

爱华网本文地址 » http://www.413yy.cn/a/8104110103/182270.html

更多阅读

怎样在Word2007中设置“拼写和语法”选项 word2010拼写和语法

用户可以借助Word2007中的“拼写和语法”功能检查Word文档中存在的单词拼写错误或语法错误,并且可以根据实际需要设置“拼写和语法”选项,使拼写和语法检查功能更适合自己的使用需要。在Word2007中设置“拼写和语法”选项的步骤如下所

英语如何学好语法,怎么学习英语语法,英语语法

英语如何学好语法,怎么学习英语语法,英语语法——简介语法学习是英语学习中的难点,不要说是针对少儿或者青少年,就连一些成年人学起来也时常感到很吃力,甚至一些以英语为母语的外国人,对于语法中的一些难点问题都不敢百分之百的确定。因为

英语语法其实很简单 gre词汇真的有用

英语语法其实很简单——简介很多人学英语一辈子,语法并没有真正搞懂。其实学好语法很简单。我自己就是学了10年英语没搞懂语法,甚至我在培训机构教了6年英语后,都没学明白语法。后来有一天,我找对了方法,只用短短一个半月时间,就把语法都

存储过程基本语法及实例 存储过程语法

存储过程如同一门程序设计语言,同样包含了数据类型、流程控制、输入和输出和它自己的函数库。--------------------基本语法--------------------一.创建存储过程create procedure sp_name()begin.........end二.调用存储过程1.基

英语语法怎么学习

怎样才能学好语法?读语法书有用吗?其实,语法是从阅读学来的。语法书当然有用,但它和字典一样,只是从旁辅助的工具。只看语法书却从不阅读,一定会走火入魔,其下场与死背生词相同。英语语法怎么学习——步骤/方法英语语法怎么学习 1、从阅读

声明:《c dialogresult DialogResult DialogResult-语法,DialogResult-成员》为网友想和沵吹吹风分享!如侵犯到您的合法权益请联系我们删除