Form.FormBorderStyle 屬性

定義

取得或設定表單的框線樣式。

C#
public System.Windows.Forms.FormBorderStyle FormBorderStyle { get; set; }

屬性值

FormBorderStyle

FormBorderStyle,代表顯示於表單的框線樣式。 預設為 FormBorderStyle.Sizable

例外狀況

指定的值超過有效值的範圍。

範例

下列範例會建立 的新實例 Form ,並呼叫 ShowDialog 方法,將表單顯示為對話方塊。 此範例會將 FormBorderStyleAcceptButtonCancelButtonMinimizeBoxMaximizeBoxStartPosition 屬性設定為將表單的外觀和功能變更為對話方塊。 此範例也會使用 Add 表單 Controls 集合的 方法來加入兩 Button 個控制項。 此範例會 HelpButton 使用 屬性,在對話方塊的標題列中顯示說明按鈕。

C#
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();
}

備註

表單的框線樣式會決定表單外部邊緣的顯示方式。 除了變更表單的框線顯示之外,某些框線樣式也會防止表單大小調整。 例如,框線樣式會將 FormBorderStyle.FixedDialog 表單的框線變更為對話方塊的框線,並防止表單調整大小。 框線樣式也會影響表單標題列區段的大小或可用性。

備註

Sizable使用樣式時,即使您已將 長度為零的字串 Text 設定 ControlBox false 為 ,也無法將視窗重設成低於特定最小值。 請考慮改用 SizableToolWindow 樣式來解決此問題。

適用於

產品 版本
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
Windows Desktop 3.0, 3.1, 5, 6, 7

另請參閱