다음을 통해 공유


BorderStyle 열거형

컨트롤의 테두리 스타일을 지정합니다.

네임스페이스: System.Windows.Forms
어셈블리: System.Windows.Forms(system.windows.forms.dll)

구문

‘선언
<ComVisibleAttribute(True)> _
Public Enumeration BorderStyle
‘사용 방법
Dim instance As BorderStyle
[ComVisibleAttribute(true)] 
public enum BorderStyle
[ComVisibleAttribute(true)] 
public enum class BorderStyle
/** @attribute ComVisibleAttribute(true) */ 
public enum BorderStyle
ComVisibleAttribute(true) 
public enum BorderStyle

멤버

  멤버 이름 설명
Supported by the .NET Compact Framework Fixed3D 3차원 테두리입니다. 
Supported by the .NET Compact Framework FixedSingle 단일 선 테두리입니다. 
Supported by the .NET Compact Framework None 테두리가 없습니다. 

설명

이 열거형의 멤버를 사용하여 변경 가능한 테두리가 있는 컨트롤의 테두리 스타일을 설정합니다.

예제

다음 코드 예제에서는 BorderStyle 열거형과 TreeView.BorderStyle, TreeView.HideSelectionTreeView.ShowRootLines 속성을 사용하는 방법을 보여 줍니다. 이 예제를 실행하려면 폼에 다음 코드를 붙여넣고 폼의 생성자나 Load 메서드에서 InitializeTreeView 메서드를 호출합니다.

' Declare the TreeView control.
Friend WithEvents TreeView1 As System.Windows.Forms.TreeView

' Initialize the TreeView to blend with the form, giving it the 
' same color as the form and no border.
Private Sub InitializeTreeView()

    ' Create a new TreeView control and set the location and size.
    Me.TreeView1 = New System.Windows.Forms.TreeView
    Me.TreeView1.Location = New System.Drawing.Point(72, 48)
    Me.TreeView1.Size = New System.Drawing.Size(200, 200)

    ' Set the BorderStyle property to none, the BackColor property to  
    ' the form's backcolor, and the Scrollable property to false.  
    ' This allows the TreeView to blend in form.
    Me.TreeView1.BorderStyle = BorderStyle.None
    Me.TreeView1.BackColor = Me.BackColor
    Me.TreeView1.Scrollable = False

    
    ' Set the ShowRootLines and ShowLines properties to false to 
    ' give the TreeView a list-like appearance.
    Me.TreeView1.ShowRootLines = False
    Me.TreeView1.ShowLines = False

    ' Add the nodes.
    Me.TreeView1.Nodes.AddRange(New System.Windows.Forms.TreeNode() _
        {New System.Windows.Forms.TreeNode("Features", _
        New System.Windows.Forms.TreeNode() _
        {New System.Windows.Forms.TreeNode("Full Color"), _
        New System.Windows.Forms.TreeNode("Project Wizards"), _
        New System.Windows.Forms.TreeNode("Visual C# and Visual Basic Support")}), _
        New System.Windows.Forms.TreeNode("System Requirements", _
        New System.Windows.Forms.TreeNode() _
        {New System.Windows.Forms.TreeNode _
        ("Pentium 133 MHz or faster processor "), _
        New System.Windows.Forms.TreeNode("Windows 98 or later"), _
        New System.Windows.Forms.TreeNode("100 MB Disk space")})})

    ' Set the tab index and add the TreeView to the form.
    Me.TreeView1.TabIndex = 0
    Me.Controls.Add(Me.TreeView1)
End Sub
// Declare the TreeView control.
internal System.Windows.Forms.TreeView TreeView1;

// Initialize the TreeView to blend with the form, giving it the 
// same color as the form and no border.
private void InitializeTreeView()
{

    // Create a new TreeView control and set the location and size.
    this.TreeView1 = new System.Windows.Forms.TreeView();
    this.TreeView1.Location = new System.Drawing.Point(72, 48);
    this.TreeView1.Size = new System.Drawing.Size(200, 200);

    // Set the BorderStyle property to none, the BackColor property to  
    // the form's backcolor, and the Scrollable property to false.  
    // This allows the TreeView to blend in form.

    this.TreeView1.BorderStyle = BorderStyle.None;
    this.TreeView1.BackColor = this.BackColor;
    this.TreeView1.Scrollable = false;

    // Set the HideSelection property to false to keep the 
    // selection highlighted when the user leaves the control. 
    // This helps it blend with form.
    this.TreeView1.HideSelection = false;

    // Set the ShowRootLines and ShowLines properties to false to 
    // give the TreeView a list-like appearance.
    this.TreeView1.ShowRootLines = false;
    this.TreeView1.ShowLines = false;

    // Add the nodes.
    this.TreeView1.Nodes.AddRange(new TreeNode[]
        {new TreeNode("Features", 
            new TreeNode[]{
            new TreeNode("Full Color"), 
            new TreeNode("Project Wizards"), 
            new TreeNode("Visual C# and Visual Basic Support")}), 
            new TreeNode("System Requirements", 
            new TreeNode[]{
                new TreeNode("Pentium 133 MHz or faster processor "),
                new TreeNode("Windows 98 or later"), 
                new TreeNode("100 MB Disk space")})
        });

    // Set the tab index and add the TreeView to the form.
    this.TreeView1.TabIndex = 0;
    this.Controls.Add(this.TreeView1);
}
// Declare the TreeView control.
System.Windows.Forms.TreeView treeView1;

// Initialize the TreeView to blend with the form, giving it the 
// same color as the form and no border.
private void InitializeTreeView()
{
    // Create a new TreeView control and set the location and size.
    this.treeView1 = new System.Windows.Forms.TreeView();
    this.treeView1.set_Location(new System.Drawing.Point(72, 48));
    this.treeView1.set_Size(new System.Drawing.Size(200, 200));
    // Set the BorderStyle property to none, the BackColor property to
    // the form's backcolor, and the Scrollable property to false.  
    // This allows the TreeView to blend in form.
    this.treeView1.set_BorderStyle(BorderStyle.None);
    this.treeView1.set_BackColor(this.get_BackColor());
    this.treeView1.set_Scrollable(false);
    // Set the HideSelection property to false to keep the 
    // selection highlighted when the user leaves the control. 
    // This helps it blend with form.
    this.treeView1.set_HideSelection(false);
    // Set the ShowRootLines and ShowLines properties to false to 
    // give the TreeView a list-like appearance.
    this.treeView1.set_ShowRootLines(false);
    this.treeView1.set_ShowLines(false);
    // Add the nodes.
    this.treeView1.get_Nodes().AddRange(
        new TreeNode[] {new TreeNode("Features",
        new TreeNode[] { new TreeNode("Full Color"),
        new TreeNode("Project Wizards"),
        new TreeNode("Visual C# and Visual Basic Support") }),
        new TreeNode("System Requirements",
        new TreeNode[] {
        new TreeNode("Pentium 133 MHz or faster processor "),
        new TreeNode("Windows 98 or later"),
        new TreeNode("100 MB Disk space") }) });
    // Set the tab index and add the TreeView to the form.
    this.treeView1.set_TabIndex(0);
    this.get_Controls().Add(this.treeView1);
} //InitializeTreeView

플랫폼

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework에서 모든 플래폼의 모든 버전을 지원하지는 않습니다. 지원되는 버전의 목록은 시스템 요구 사항을 참조하십시오.

버전 정보

.NET Framework

2.0, 1.1, 1.0에서 지원

.NET Compact Framework

2.0, 1.0에서 지원

참고 항목

참조

System.Windows.Forms 네임스페이스