|
Este artigo foi traduzido por máquina. Coloque o ponteiro do mouse sobre as frases do artigo para ver o texto original. Mais informações.
|
Tradução
Original
|
MessageBox.Show Método (String, String, MessageBoxButtons, MessageBoxIcon)
.NET Framework 2.0
Assembly: System.Windows.Forms (em System.Windows.Forms. dll)
public static DialogResult Show( string text, string caption, MessageBoxButtons buttons, MessageBoxIcon icon )
Parâmetros
- text
- Tipo: System.String
O texto a ser Exibir na caixa de mensagem.
- caption
- Tipo: System.String
O texto a ser Exibir na barra de título de caixa de mensagem.
- buttons
- Tipo: System.Windows.Forms.MessageBoxButtons
One of the MessageBoxButtons values that specifies which buttons to display in the message box.
- icon
- Tipo: System.Windows.Forms.MessageBoxIcon
One of the MessageBoxIcon values that specifies which icon to display in the message box.
| Exceção | Condição |
|---|---|
| InvalidEnumArgumentException | |
| InvalidOperationException |
// Declare ComboBox1. internal System.Windows.Forms.ComboBox ComboBox1; // Initialize ComboBox1. private void InitializeComboBox() { this.ComboBox1 = new ComboBox(); this.ComboBox1.Location = new System.Drawing.Point(128, 48); this.ComboBox1.Name = "ComboBox1"; this.ComboBox1.Size = new System.Drawing.Size(100, 21); this.ComboBox1.TabIndex = 0; this.ComboBox1.Text = "Typical"; string[] installs = new string[]{"Typical", "Compact", "Custom"}; ComboBox1.Items.AddRange(installs); this.Controls.Add(this.ComboBox1); // Hook up the event handler. this.ComboBox1.DropDown += new System.EventHandler(ComboBox1_DropDown); } // Handles the ComboBox1 DropDown event. If the user expands the // drop-down box, a message box will appear, recommending the // typical installation. private void ComboBox1_DropDown(object sender, System.EventArgs e) { MessageBox.Show("Typical installation is strongly recommended.", "Install information", MessageBoxButtons.OK, MessageBoxIcon.Information); }
// Declare comboBox1.
System.Windows.Forms.ComboBox comboBox1;
// Initialize comboBox1.
private void InitializeComboBox()
{
this.comboBox1 = new ComboBox();
this.comboBox1.set_Location(new System.Drawing.Point(128, 48));
this.comboBox1.set_Name("comboBox1");
this.comboBox1.set_Size(new System.Drawing.Size(100, 21));
this.comboBox1.set_TabIndex(0);
this.comboBox1.set_Text("Typical");
String installs[] = new String[] { "Typical", "Compact", "Custom" };
comboBox1.get_Items().AddRange(installs);
this.get_Controls().Add(this.comboBox1);
// Hook up the event handler.
this.comboBox1.add_DropDown(new System.EventHandler(
comboBox1_DropDown));
} //InitializeComboBox
// Handles the comboBox1 DropDown event. If the user expands the
// drop-down box, a message box will appear, recommending the
// typical installation.
private void comboBox1_DropDown(Object sender, System.EventArgs e)
{
MessageBox.Show("Typical installation is strongly recommended.",
"Install information", MessageBoxButtons.OK,
MessageBoxIcon.Information);
} //comboBox1_DropDown
- UIPermission
Para segurança subjanelas chamar esse método. Enumeração associada: UIPermissionWindow.SafeSubWindows