TextBoxBase.BorderStyle Właściwość

Definicja

Pobiera lub ustawia typ obramowania kontrolki pola tekstowego.

public:
 property System::Windows::Forms::BorderStyle BorderStyle { System::Windows::Forms::BorderStyle get(); void set(System::Windows::Forms::BorderStyle value); };
public System.Windows.Forms.BorderStyle BorderStyle { get; set; }
member this.BorderStyle : System.Windows.Forms.BorderStyle with get, set
Public Property BorderStyle As BorderStyle

Wartość właściwości

BorderStyle

Element BorderStyle reprezentujący typ obramowania kontrolki pola tekstowego. Wartość domyślna to Fixed3D.

Wyjątki

Wartość, która nie znajduje się w zakresie prawidłowych wartości dla wyliczenia, została przypisana do właściwości .

Przykłady

Poniższy przykład kodu używa TextBoxklasy pochodnej , aby utworzyć pole tekstowe, które może poprawnie wyświetlać tekst przy użyciu 20-punktowej Arial z pojedynczym obramowaniem. W tym przykładzie PreferredHeight użyto właściwości , aby określić odpowiednią wysokość kontrolki po czcionce i BorderStyle zostały przypisane do kontrolki.

public:
   void CreateTextBox()
   {
      // Create an instance of the TextBox control.
      TextBox^ textBox1 = gcnew TextBox;
      
      // Set the TextBox Font property to Arial 20.
      textBox1->Font = gcnew System::Drawing::Font( "Arial", 20 );
      // Set the BorderStyle property to FixedSingle.
      textBox1->BorderStyle = System::Windows::Forms::BorderStyle::FixedSingle;
      // Make the height of the control equal to the preferred height.
      textBox1->Height = textBox1->PreferredHeight;
   }
public void CreateTextBox()
 {
    // Create an instance of the TextBox control.
    TextBox textBox1 = new TextBox();
 
    // Set the TextBox Font property to Arial 20.
    textBox1.Font = new Font ("Arial" , 20);
    // Set the BorderStyle property to FixedSingle.
    textBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
    // Make the height of the control equal to the preferred height.
    textBox1.Height = textBox1.PreferredHeight;
 }
Public Sub CreateTextBox()
    ' Create an instance of the TextBox control.
    Dim textBox1 As New TextBox()
    
    ' Set the TextBox Font property to Arial 20.
    textBox1.Font = New Font("Arial", 20)
    ' Set the BorderStyle property to FixedSingle.
    textBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
    ' Make the height of the control equal to the preferred height.
    textBox1.Height = textBox1.PreferredHeight
End Sub

Uwagi

Za pomocą BorderStyle właściwości można tworzyć kontrolki stylu bez obramowania i płaskiego, oprócz domyślnej kontrolki trójwymiarowej.

Uwaga

Klasa pochodna , RichTextBoxnie obsługuje BorderStyle.FixedSingle stylu. Ten styl spowoduje BorderStyle zamiast tego użycie BorderStyle.Fixed3D stylu.

Dotyczy