Splitter.MinSize Propriété

Définition

Obtient ou définit la distance minimale à conserver entre le contrôle Splitter et le bord de conteneur sur lequel le contrôle est ancré. MinSize a été remplacé par Panel1MinSize et Panel2MinSize et n'est fourni que pour assurer la compatibilité avec les versions précédentes.

public:
 property int MinSize { int get(); void set(int value); };
public int MinSize { get; set; }
member this.MinSize : int with get, set
Public Property MinSize As Integer

Valeur de propriété

Int32

La distance minimale, en pixels, entre le contrôle Splitter et le bord du conteneur auquel le contrôle est fixé. La valeur par défaut est 25.

Exemples

L’exemple de code suivant utilise un Splitter contrôle en combinaison avec TreeView et ListView des contrôles pour créer une fenêtre similaire à Windows Explorer. Pour identifier les contrôles et ListView les TreeView nœuds, les nœuds et les éléments sont ajoutés aux deux contrôles. L’exemple utilise les propriétés et les MinExtra propriétés de l’élément Splitter pour empêcher le ou ListView le TreeView contrôle d’être dimensionné trop petit ou trop MinSize grand. Cet exemple exige que la méthode créée dans cet exemple soit définie dans un Form et que la méthode est appelée à partir du constructeur du Form.

private:
   void CreateMySplitControls()
   {
      // Create TreeView, ListView, and Splitter controls.
      TreeView^ treeView1 = gcnew TreeView;
      ListView^ listView1 = gcnew ListView;
      Splitter^ splitter1 = gcnew Splitter;

      // Set the TreeView control to dock to the left side of the form.
      treeView1->Dock = DockStyle::Left;

      // Set the Splitter to dock to the left side of the TreeView control.
      splitter1->Dock = DockStyle::Left;

      // Set the minimum size the ListView control can be sized to.
      splitter1->MinExtra = 100;

      // Set the minimum size the TreeView control can be sized to.
      splitter1->MinSize = 75;

      // Set the ListView control to fill the remaining space on the form.
      listView1->Dock = DockStyle::Fill;

      // Add a TreeView and a ListView item to identify the controls on the form.
      treeView1->Nodes->Add( "TreeView Node" );
      listView1->Items->Add( "ListView Item" );

      // Add the controls in reverse order to the form to ensure proper location.
      array<Control^>^temp0 = {listView1,splitter1,treeView1};
      this->Controls->AddRange( temp0 );
   }
private void CreateMySplitControls()
{
    // Create TreeView, ListView, and Splitter controls.
    TreeView treeView1 = new TreeView();
    ListView listView1 = new ListView();
    Splitter splitter1 = new Splitter();

    // Set the TreeView control to dock to the left side of the form.
    treeView1.Dock = DockStyle.Left;
    // Set the Splitter to dock to the left side of the TreeView control.
    splitter1.Dock = DockStyle.Left;
    // Set the minimum size the ListView control can be sized to.
    splitter1.MinExtra = 100;
    // Set the minimum size the TreeView control can be sized to.
    splitter1.MinSize = 75;
    // Set the ListView control to fill the remaining space on the form.
    listView1.Dock = DockStyle.Fill;
    // Add a TreeView and a ListView item to identify the controls on the form.
    treeView1.Nodes.Add("TreeView Node");
    listView1.Items.Add("ListView Item");

    // Add the controls in reverse order to the form to ensure proper location.
    this.Controls.AddRange(new Control[]{listView1, splitter1, treeView1});
}
Private Sub CreateMySplitControls()
   ' Create TreeView, ListView, and Splitter controls.
   Dim treeView1 As New TreeView()
   Dim listView1 As New ListView()
   Dim splitter1 As New Splitter()
   
   ' Set the TreeView control to dock to the left side of the form.
   treeView1.Dock = DockStyle.Left
   ' Set the Splitter to dock to the left side of the TreeView control.
   splitter1.Dock = DockStyle.Left
   ' Set the minimum size the ListView control can be sized to.
      splitter1.MinExtra = 100
   ' Set the minimum size the TreeView control can be sized to.
      splitter1.MinSize = 75
   ' Set the ListView control to fill the remaining space on the form.
      listView1.Dock = DockStyle.Fill

      ' Add a TreeView and a ListView item to identify the controls on the form.
      treeView1.Nodes.Add("TreeView Node")
      listView1.Items.Add("ListView Item")
   
   ' Add the controls in reverse order to the form to ensure proper location.
   Me.Controls.AddRange(New Control() {listView1, splitter1, treeView1})
End Sub

Remarques

Pour un contrôle horizontal Splitter (contrôle Splitter ancré en haut ou en bas d’un conteneur), cette valeur est la hauteur minimale du contrôle redimensionnable. Pour un contrôle vertical Splitter (contrôle Splitter ancré à gauche ou à droite d’un conteneur), cette valeur est la largeur minimale du contrôle redimensionnable. L’utilisateur ne peut pas déplacer le séparateur au-delà de la limite spécifiée par cette propriété.

Notes

Si la MinSize propriété est définie sur une valeur négative, la valeur de la propriété est réinitialisée à 0.

S’applique à

Voir aussi