Skip to content

Latest commit

 

History

History
46 lines (34 loc) · 2.43 KB

how-to-change-the-borders-of-windows-forms.md

File metadata and controls

46 lines (34 loc) · 2.43 KB
title descriptions ms.date dev_langs helpviewer_keywords ms.assetid
Change form borders
Learn how to change form borders when you are determining the appearance and behavior of your Windows Forms.
03/30/2017
csharp
vb
cpp
Windows Forms, changing the borders
b3d5fa56-80c6-4b10-b505-f9672307ed55

How to: Change the Borders of Windows Forms

You have several border styles to choose from when you are determining the appearance and behavior of your Windows Forms. By changing the xref:System.Windows.Forms.Form.FormBorderStyle%2A property, you can control the resizing behavior of the form. In addition, setting the xref:System.Windows.Forms.Form.FormBorderStyle%2A affects how the caption bar is displayed as well as what buttons might appear on it. For more information, see xref:System.Windows.Forms.FormBorderStyle.

There is extensive support for this task in Visual Studio.

See also How to: Change the Borders of Windows Forms Using the Designer.

To set the border style of Windows Forms programmatically

  • Set the xref:System.Windows.Forms.Form.FormBorderStyle%2A property to the style you want. The following code example sets the border style of form DlgBx1 to xref:System.Windows.Forms.FormBorderStyle.FixedDialog.

    DlgBx1.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog  
    DlgBx1.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;  
    DlgBx1->FormBorderStyle =  
       System::Windows::Forms::FormBorderStyle::FixedDialog;  

    Also see How to: Create Dialog Boxes at Design Time.

    Additionally, if you have chosen a border style for the form that provides optional Minimize and Maximize buttons, you can specify whether you want either or both of these buttons to be functional. These buttons are useful when you want to closely control the user experience. The Minimize and Maximize buttons are enabled by default, and their functionality is manipulated through the Properties window.

See also