MessageBoxDefaultButton Sabit listesi
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
üzerinde MessageBoxvarsayılan düğmeyi tanımlayan sabitleri belirtir.
public enum class MessageBoxDefaultButton
public enum MessageBoxDefaultButton
type MessageBoxDefaultButton =
Public Enum MessageBoxDefaultButton
- Devralma
Alanlar
Button1 | 0 | İleti kutusundaki ilk düğme varsayılan düğmedir. |
Button2 | 256 | İleti kutusundaki ikinci düğme varsayılan düğmedir. |
Button3 | 512 | İleti kutusundaki üçüncü düğme varsayılan düğmedir. |
Button4 | 768 | İleti kutusundaki Yardım düğmesinin varsayılan düğme olması gerektiğini belirtir. |
Örnekler
Aşağıdaki kod örneği, öğesinin bu aşırı yüklemesi Showtarafından desteklenen seçeneklerle nasıl görüntüleneceğini MessageBox gösterir. dize değişkeninin ServerName
boş olduğunu doğruladıktan sonra örnekte, kullanıcıya işlemi iptal etme seçeneği sunan bir soru kutusu simgesiyle birlikte görüntülenir MessageBox . Örnek, metni iletişim kutusunun sağ kenarına hizalamak için numaralandırmanın üyesini MessageBoxOptions kullanırRightAlign. Yöntemin Show dönüş değeri olarak değerlendirilirse Yes, öğesini görüntüleyen MessageBox form kapatılır.
private:
void validateUserEntry2()
{
// 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, MessageBoxIcon::Question, MessageBoxDefaultButton::Button1, MessageBoxOptions::RightAlign );
if ( result == ::DialogResult::Yes )
{
// Closes the parent form.
this->Close();
}
}
}
private void validateUserEntry2()
{
// 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,
MessageBoxIcon.Question, MessageBoxDefaultButton.Button1,
MessageBoxOptions.RightAlign);
if(result == DialogResult.Yes)
{
// Closes the parent form.
this.Close();
}
}
}
Private Sub ValidateUserEntry2()
' Checks the value of the text.
If ServerName.Text.Length = 0 Then
' Initializes variables to pass to the MessageBox.Show method.
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, _
MessageBoxIcon.Question, MessageBoxDefaultButton.Button1, MessageBoxOptions.RightAlign)
' 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
Açıklamalar
Bu numaralandırma sınıfı tarafından MessageBox kullanılır.