Obtém ou define o estilo de borda do formulário.
Namespace:
System.Windows.Forms
Assembly:
System.Windows.Forms (em System.Windows.Forms. dll)
Visual Basic (Declaração)
Public Property FormBorderStyle As FormBorderStyle
Dim instance As Form
Dim value As FormBorderStyle
value = instance.FormBorderStyle
instance.FormBorderStyle = value
public FormBorderStyle FormBorderStyle { get; set; }
public:
property FormBorderStyle FormBorderStyle {
FormBorderStyle get ();
void set (FormBorderStyle value);
}
public function get FormBorderStyle () : FormBorderStyle
public function set FormBorderStyle (value : FormBorderStyle)
O estilo de borda do formulário determina como a borda externa do formulário é exibida. Bem como alterar a Exibir de borda de um formulário, determinados estilos de borda impedem o formulário que está sendo dimensionada. Por exemplo, o estilo de borda FormBorderStyle.FixedDialog altera as bordas do formulário ao de uma caixa de diálogo e impede que o formulário seja redimensionada. O estilo de borda também pode afetar o tamanho ou disponibilidade de seção de barra de legenda de um formulário.
Observação: |
|---|
With
o
Estilo de Sizable , é impossível redimensionar a janela abaixo de um determinado valor mínimo, mesmo se você tiver definir ControlBox a false e atribuído a uma Cadeia de Caracteres de comprimento zero a Text. Considere o trabalho em torno de isso usando o estilo de SizableToolWindow em vez disso. |
Anotação de plataforma Windows Mobile para Pocket PC, Windows Mobile para Smartphone, O Windows CE:
Para garantir que o formulário mantém o tamanho correto após a que está sendo criado, especificar o estilo de FixedSingle. Dimensionamento correto não pode ser retido se você especificar None para o estilo.
O exemplo de código a seguir cria uma Novo instância de um Form e chama o método ShowDialog para exibir o formulário como uma caixa de diálogo. O exemplo define a FormBorderStyle, AcceptButton, CancelButton, MinimizeBox, MaximizeBoxe propriedades de StartPosition para alterar a aparência e a funcionalidade do formulário a uma caixa de diálogo. O exemplo também usa o método de Add da coleção de Controls do formulário para adicionar dois controles de Button. O exemplo usa a propriedade HelpButton para exibir um botão Ajuda na barra de legenda da caixa de diálogo.
Public Sub CreateMyForm()
' Create a new instance of the form.
Dim form1 As New Form()
' Create two buttons to use as the accept and cancel buttons.
Dim button1 As New Button()
Dim button2 As New Button()
' Set the text of button1 to "OK".
button1.Text = "OK"
' Set the position of the button on the form.
button1.Location = New Point(10, 10)
' Set the text of button2 to "Cancel".
button2.Text = "Cancel"
' Set the position of the button based on the location of button1.
button2.Location = _
New Point(button1.Left, button1.Height + button1.Top + 10)
' Set the caption bar text of the form.
form1.Text = "My Dialog Box"
' Display a help button on the form.
form1.HelpButton = True
' Define the border style of the form to a dialog box.
form1.FormBorderStyle = FormBorderStyle.FixedDialog
' Set the MaximizeBox to false to remove the maximize box.
form1.MaximizeBox = False
' Set the MinimizeBox to false to remove the minimize box.
form1.MinimizeBox = False
' Set the accept button of the form to button1.
form1.AcceptButton = button1
' Set the cancel button of the form to button2.
form1.CancelButton = button2
' Set the start position of the form to the center of the screen.
form1.StartPosition = FormStartPosition.CenterScreen
' Add button1 to the form.
form1.Controls.Add(button1)
' Add button2 to the form.
form1.Controls.Add(button2)
' Display the form as a modal dialog box.
form1.ShowDialog()
End Sub
public void CreateMyForm()
{
// Create a new instance of the form.
Form form1 = new Form();
// Create two buttons to use as the accept and cancel buttons.
Button button1 = new Button ();
Button button2 = new Button ();
// Set the text of button1 to "OK".
button1.Text = "OK";
// Set the position of the button on the form.
button1.Location = new Point (10, 10);
// Set the text of button2 to "Cancel".
button2.Text = "Cancel";
// Set the position of the button based on the location of button1.
button2.Location
= new Point (button1.Left, button1.Height + button1.Top + 10);
// Set the caption bar text of the form.
form1.Text = "My Dialog Box";
// Display a help button on the form.
form1.HelpButton = true;
// Define the border style of the form to a dialog box.
form1.FormBorderStyle = FormBorderStyle.FixedDialog;
// Set the MaximizeBox to false to remove the maximize box.
form1.MaximizeBox = false;
// Set the MinimizeBox to false to remove the minimize box.
form1.MinimizeBox = false;
// Set the accept button of the form to button1.
form1.AcceptButton = button1;
// Set the cancel button of the form to button2.
form1.CancelButton = button2;
// Set the start position of the form to the center of the screen.
form1.StartPosition = FormStartPosition.CenterScreen;
// Add button1 to the form.
form1.Controls.Add(button1);
// Add button2 to the form.
form1.Controls.Add(button2);
// Display the form as a modal dialog box.
form1.ShowDialog();
}
public:
void CreateMyForm()
{
// Create a new instance of the form.
Form^ form1 = gcnew Form;
// Create two buttons to use as the accept and cancel buttons.
Button^ button1 = gcnew Button;
Button^ button2 = gcnew Button;
// Set the text of button1 to "OK".
button1->Text = "OK";
// Set the position of the button on the form.
button1->Location = Point(10,10);
// Set the text of button2 to "Cancel".
button2->Text = "Cancel";
// Set the position of the button based on the location of button1.
button2->Location =
Point( button1->Left, button1->Height + button1->Top + 10 );
// Set the caption bar text of the form.
form1->Text = "My Dialog Box";
// Display a help button on the form.
form1->HelpButton = true;
// Define the border style of the form to a dialog box.
form1->FormBorderStyle = ::FormBorderStyle::FixedDialog;
// Set the MaximizeBox to false to remove the maximize box.
form1->MaximizeBox = false;
// Set the MinimizeBox to false to remove the minimize box.
form1->MinimizeBox = false;
// Set the accept button of the form to button1.
form1->AcceptButton = button1;
// Set the cancel button of the form to button2.
form1->CancelButton = button2;
// Set the start position of the form to the center of the screen.
form1->StartPosition = FormStartPosition::CenterScreen;
// Add button1 to the form.
form1->Controls->Add( button1 );
// Add button2 to the form.
form1->Controls->Add( button2 );
// Display the form as a modal dialog box.
form1->ShowDialog();
}
public void CreateMyForm()
{
// Create a new instance of the form.
Form form1 = new Form();
// Create two buttons to use as the accept and cancel buttons.
Button button1 = new Button();
Button button2 = new Button();
// Set the text of button1 to "OK".
button1.set_Text("OK");
// Set the position of the button on the form.
button1.set_Location(new Point(10, 10));
// Set the text of button2 to "Cancel".
button2.set_Text("Cancel");
// Set the position of the button based on the location of button1.
button2.set_Location(new Point(button1.get_Left(),
button1.get_Height() + button1.get_Top() + 10));
// Set the caption bar text of the form.
form1.set_Text("My Dialog Box");
// Display a help button on the form.
form1.set_HelpButton(true);
// Define the border style of the form to a dialog box.
form1.set_FormBorderStyle(get_FormBorderStyle().FixedDialog);
// Set the MaximizeBox to false to remove the maximize box.
form1.set_MaximizeBox(false);
// Set the MinimizeBox to false to remove the minimize box.
form1.set_MinimizeBox(false);
// Set the accept button of the form to button1.
form1.set_AcceptButton(button1);
// Set the cancel button of the form to button2.
form1.set_CancelButton(button2);
// Set the start position of the form to the center of the screen.
form1.set_StartPosition(FormStartPosition.CenterScreen);
// Add button1 to the form.
form1.get_Controls().Add(button1);
// Add button2 to the form.
form1.get_Controls().Add(button2);
// Display the form as a modal dialog box.
form1.ShowDialog();
} //CreateMyForm
Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, O Windows CE, Windows Mobile para Pocket PC
O .NET Framework e .NET Compact Framework não suporte para todas as versões de cada plataforma. Para obter uma lista das versões com suporte, consulte Requisitos de sistema do .NET framework.
.NET Framework
Compatível com: 3.5, 3.0, 2.0, 1.1, 1.0
.NET Compact Framework
Compatível com: 3.5, 2.0, 1.0
Referência