FormBorderStyle Énumération
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Spécifie les styles de bordure d'un formulaire.
public enum class FormBorderStyle
[System.Runtime.InteropServices.ComVisible(true)]
public enum FormBorderStyle
public enum FormBorderStyle
[<System.Runtime.InteropServices.ComVisible(true)>]
type FormBorderStyle =
type FormBorderStyle =
Public Enum FormBorderStyle
- Héritage
- Attributs
Champs
Fixed3D | 2 | Bordure tridimensionnelle fixe. |
FixedDialog | 3 | Bordure de style boîte de dialogue, épaisse et fixe. |
FixedSingle | 1 | Bordure fixe d'une ligne. |
FixedToolWindow | 5 | Bordure de fenêtre outil non redimensionnable. Une fenêtre Outil ne s'affiche pas dans la barre des tâches ni dans la fenêtre qui apparaît lorsque l'utilisateur appuie sur ALT+TAB. Même si les formulaires qui spécifient FixedToolWindow ne sont généralement pas affichés dans la barre des tâches, vous devez également vérifier que la propriété ShowInTaskbar a la valeur |
None | 0 | Aucune bordure. |
Sizable | 4 | Bordure redimensionnable. |
SizableToolWindow | 6 | Bordure de fenêtre outil redimensionnable. Une fenêtre Outil ne s'affiche pas dans la barre des tâches ni dans la fenêtre qui apparaît lorsque l'utilisateur appuie sur ALT+TAB. |
Exemples
Dans cet exemple, vous modifiez le style de bordure de formulaire en Fixed3d
et affichez les informations de la bordure à l’aide d’une étiquette. Cet exemple suppose que vous avez déjà créé un Form nommé Form1
.
public:
void InitMyForm()
{
// Adds a label to the form.
Label^ label1 = gcnew Label;
label1->Location = System::Drawing::Point( 80, 80 );
label1->Name = "label1";
label1->Size = System::Drawing::Size( 132, 80 );
label1->Text = "Start Position Information";
this->Controls->Add( label1 );
// Changes the border to Fixed3D.
FormBorderStyle = ::FormBorderStyle::Fixed3D;
// Displays the border information.
label1->Text = String::Format( "The border is {0}", FormBorderStyle );
}
public void InitMyForm()
{
// Adds a label to the form.
Label label1 = new Label();
label1.Location = new System.Drawing.Point(80,80);
label1.Name = "label1";
label1.Size = new System.Drawing.Size(132,80);
label1.Text = "Start Position Information";
this.Controls.Add(label1);
// Changes the border to Fixed3D.
FormBorderStyle = FormBorderStyle.Fixed3D;
// Displays the border information.
label1.Text = "The border is " + FormBorderStyle;
}
Public Sub InitMyForm()
' Adds a label to the form.
Dim label1 As New Label()
label1.Location = New System.Drawing.Point(80, 80)
label1.Name = "label1"
label1.Size = New System.Drawing.Size(132, 80)
label1.Text = "Start Position Information"
Me.Controls.Add(label1)
' Changes the border to Fixed3D.
FormBorderStyle = FormBorderStyle.Fixed3D
' Displays the border information.
label1.Text = "The border is " + FormBorderStyle
End Sub
Remarques
Cette énumération est utilisée par la classe Form. Il représente les différents styles du formulaire. Le style par défaut est Sizable
.