Button Конструктор

Определение

Инициализирует новый экземпляр класса Button.

public:
 Button();
public Button ();
Public Sub New ()

Примеры

В следующем примере кода создается Buttonобъект, присваивающий его DialogResult свойству OK значение DialogResultи добавляющий его в .Form

private:
   void InitializeMyButton()
   {
      // Create and initialize a Button.
      Button^ button1 = gcnew Button;
      
      // Set the button to return a value of OK when clicked.
      button1->DialogResult = ::DialogResult::OK;
      
      // Add the button to the form.
      Controls->Add( button1 );
   }
private void InitializeMyButton()
 {
    // Create and initialize a Button.
    Button button1 = new Button();
 
    // Set the button to return a value of OK when clicked.
    button1.DialogResult = DialogResult.OK;
 
    // Add the button to the form.
    Controls.Add(button1);
 }
Private Sub InitializeMyButton()
    ' Create and initialize a Button.
    Dim button1 As New Button()
    
    ' Set the button to return a value of OK when clicked.
    button1.DialogResult = DialogResult.OK
    
    ' Add the button to the form.
    Controls.Add(button1)
End Sub

Комментарии

По умолчанию Button отображается без заголовка. Чтобы указать текст заголовка, задайте Text свойство.

Применяется к

См. также раздел