TreeView.Scrollable Propriété

Définition

Obtient ou définit une valeur indiquant si le contrôle arborescence affiche des barres de défilement quand elles sont utiles.

C#
public bool Scrollable { get; set; }

Valeur de propriété

Boolean

true si le contrôle TreeView affiche des barres de défilement quand elles sont utiles ; sinon, false. La valeur par défaut est true.

Exemples

L’exemple de code suivant montre comment utiliser l’énumération BorderStyle et les BorderStylepropriétés , ShowLines, ScrollableHideSelection et ShowRootLines les propriétés. Pour exécuter cet exemple, collez le code suivant dans un formulaire et appelez la méthode dans le constructeur ou Load la InitializeTreeView méthode du formulaire.

C#

// 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);
}

Remarques

Si cette propriété est définie truesur , les barres de défilement sont affichées sur le TreeView moment où un TreeNode élément se trouve en dehors de la région cliente du contrôle.

Remarque

Lorsque vous définissez la propriété au moment de l’exécution Scrollable , le TreeView handle est recréé (voir Control.RecreateHandle) pour mettre à jour l’apparence du contrôle. Cela entraîne l’effondrement de tous les nœuds d’arborescence, à l’exception de l’élément sélectionné TreeNode.

S’applique à

Produit Versions
.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