TreeNodeCollection Klasa

Definicja

Reprezentuje kolekcję TreeNode obiektów.

public ref class TreeNodeCollection : System::Collections::IList
public class TreeNodeCollection : System.Collections.IList
type TreeNodeCollection = class
    interface IList
    interface ICollection
    interface IEnumerable
Public Class TreeNodeCollection
Implements IList
Dziedziczenie
TreeNodeCollection
Implementuje

Przykłady

Poniższy przykład kodu przedstawia informacje o kliencie w kontrolce TreeView . Węzły drzewa głównego wyświetlają nazwy klientów, a węzły drzewa podrzędnego wyświetlają numery zamówień przypisanych do każdego klienta. W tym przykładzie wyświetlanych jest 1000 klientów z 15 zamówieniami. Przemalowanie TreeView obiektu jest pomijane przy użyciu BeginUpdate metod i EndUpdate , a oczekiwanie Cursor jest wyświetlane podczas TreeView tworzenia i malowania TreeNode obiektów. W tym przykładzie jest wymagany Customer obiekt, który może przechowywać kolekcję Order obiektów. Wymaga to również utworzenia wystąpienia kontrolki TreeView na obiekcie Form.

// The basic Customer class.
ref class Customer: public System::Object
{
private:
   String^ custName;

protected:
   ArrayList^ custOrders;

public:
   Customer( String^ customername )
   {
      custName = "";
      custOrders = gcnew ArrayList;
      this->custName = customername;
   }


   property String^ CustomerName 
   {
      String^ get()
      {
         return this->custName;
      }

      void set( String^ value )
      {
         this->custName = value;
      }

   }

   property ArrayList^ CustomerOrders 
   {
      ArrayList^ get()
      {
         return this->custOrders;
      }

   }

};


// End Customer class
// The basic customer Order class.
ref class Order: public System::Object
{
private:
   String^ ordID;

public:
   Order( String^ orderid )
   {
      ordID = "";
      this->ordID = orderid;
   }


   property String^ OrderID 
   {
      String^ get()
      {
         return this->ordID;
      }

      void set( String^ value )
      {
         this->ordID = value;
      }

   }

};
// End Order class



void FillMyTreeView()
{
   // Add customers to the ArrayList of Customer objects.
   for ( int x = 0; x < 1000; x++ )
   {
      customerArray->Add( gcnew Customer( "Customer " + x ) );
   }
   
   // Add orders to each Customer object in the ArrayList.
   IEnumerator^ myEnum = customerArray->GetEnumerator();
   while ( myEnum->MoveNext() )
   {
      Customer^ customer1 = safe_cast<Customer^>(myEnum->Current);
      for ( int y = 0; y < 15; y++ )
      {
         customer1->CustomerOrders->Add( gcnew Order( "Order " + y ) );
      }
   }

   // Display a wait cursor while the TreeNodes are being created.
   ::Cursor::Current = gcnew System::Windows::Forms::Cursor( "MyWait.cur" );
   
   // Suppress repainting the TreeView until all the objects have been created.
   treeView1->BeginUpdate();
   
   // Clear the TreeView each time the method is called.
   treeView1->Nodes->Clear();
   
   // Add a root TreeNode for each Customer object in the ArrayList.
   myEnum = customerArray->GetEnumerator();
   while ( myEnum->MoveNext() )
   {
      Customer^ customer2 = safe_cast<Customer^>(myEnum->Current);
      treeView1->Nodes->Add( gcnew TreeNode( customer2->CustomerName ) );
      
      // Add a child treenode for each Order object in the current Customer object.
      IEnumerator^ myEnum = customer2->CustomerOrders->GetEnumerator();
      while ( myEnum->MoveNext() )
      {
         Order^ order1 = safe_cast<Order^>(myEnum->Current);
         treeView1->Nodes[ customerArray->IndexOf( customer2 ) ]->Nodes->Add( gcnew TreeNode( customer2->CustomerName + "." + order1->OrderID ) );
      }
   }
   
   // Reset the cursor to the default for all controls.
   ::Cursor::Current = Cursors::Default;
   
   // Begin repainting the TreeView.
   treeView1->EndUpdate();
}

// The basic Customer class.
public class Customer : System.Object
{
   private string custName = "";
   protected ArrayList custOrders = new ArrayList();

   public Customer(string customername)
   {
      this.custName = customername;
   }

   public string CustomerName
   {      
      get{return this.custName;}
      set{this.custName = value;}
   }

   public ArrayList CustomerOrders 
   {
      get{return this.custOrders;}
   }
} // End Customer class 

// The basic customer Order class.
public class Order : System.Object
{
   private string ordID = "";

   public Order(string orderid)
   {
      this.ordID = orderid;
   }

   public string OrderID
   {      
      get{return this.ordID;}
      set{this.ordID = value;}
   }
} // End Order class

// Create a new ArrayList to hold the Customer objects.
private ArrayList customerArray = new ArrayList(); 

private void FillMyTreeView()
{
   // Add customers to the ArrayList of Customer objects.
   for(int x=0; x<1000; x++)
   {
      customerArray.Add(new Customer("Customer" + x.ToString()));
   }

   // Add orders to each Customer object in the ArrayList.
   foreach(Customer customer1 in customerArray)
   {
      for(int y=0; y<15; y++)
      {
         customer1.CustomerOrders.Add(new Order("Order" + y.ToString()));    
      }
   }

   // Display a wait cursor while the TreeNodes are being created.
   Cursor.Current = new Cursor("MyWait.cur");
        
   // Suppress repainting the TreeView until all the objects have been created.
   treeView1.BeginUpdate();

   // Clear the TreeView each time the method is called.
   treeView1.Nodes.Clear();

   // Add a root TreeNode for each Customer object in the ArrayList.
   foreach(Customer customer2 in customerArray)
   {
      treeView1.Nodes.Add(new TreeNode(customer2.CustomerName));
          
      // Add a child treenode for each Order object in the current Customer object.
      foreach(Order order1 in customer2.CustomerOrders)
      {
         treeView1.Nodes[customerArray.IndexOf(customer2)].Nodes.Add(
           new TreeNode(customer2.CustomerName + "." + order1.OrderID));
      }
   }

   // Reset the cursor to the default for all controls.
   Cursor.Current = Cursors.Default;

   // Begin repainting the TreeView.
   treeView1.EndUpdate();
}
Public Class Customer
   Inherits [Object]
   Private custName As String = ""
   Friend custOrders As New ArrayList()

   Public Sub New(ByVal customername As String)
      Me.custName = customername
   End Sub

   Public Property CustomerName() As String
      Get
         Return Me.custName
      End Get
      Set(ByVal Value As String)
         Me.custName = Value
      End Set
   End Property

   Public ReadOnly Property CustomerOrders() As ArrayList
      Get
         Return Me.custOrders
      End Get
   End Property
End Class


Public Class Order
   Inherits [Object]
   Private ordID As String

   Public Sub New(ByVal orderid As String)
      Me.ordID = orderid
   End Sub

   Public Property OrderID() As String
      Get
         Return Me.ordID
      End Get
      Set(ByVal Value As String)
         Me.ordID = Value
      End Set
   End Property
End Class

' Create a new ArrayList to hold the Customer objects.
Private customerArray As New ArrayList()

Private Sub FillMyTreeView()
   ' Add customers to the ArrayList of Customer objects.
   Dim x As Integer
   For x = 0 To 999
      customerArray.Add(New Customer("Customer" + x.ToString()))
   Next x

   ' Add orders to each Customer object in the ArrayList.
   Dim customer1 As Customer
   For Each customer1 In customerArray
      Dim y As Integer
      For y = 0 To 14
         customer1.CustomerOrders.Add(New Order("Order" + y.ToString()))
      Next y
   Next customer1

   ' Display a wait cursor while the TreeNodes are being created.
   Cursor.Current = New Cursor("MyWait.cur")

   ' Suppress repainting the TreeView until all the objects have been created.
   treeView1.BeginUpdate()

   ' Clear the TreeView each time the method is called.
   treeView1.Nodes.Clear()

   ' Add a root TreeNode for each Customer object in the ArrayList.
   Dim customer2 As Customer
   For Each customer2 In customerArray
      treeView1.Nodes.Add(New TreeNode(customer2.CustomerName))

      ' Add a child TreeNode for each Order object in the current Customer object.
      Dim order1 As Order
      For Each order1 In customer2.CustomerOrders
         treeView1.Nodes(customerArray.IndexOf(customer2)).Nodes.Add( _
    New TreeNode(customer2.CustomerName + "." + order1.OrderID))
      Next order1
   Next customer2

   ' Reset the cursor to the default for all controls.
   Cursor.Current = System.Windows.Forms.Cursors.Default

   ' Begin repainting the TreeView.
   treeView1.EndUpdate()
End Sub

Uwagi

Metody Add, Removei RemoveAt umożliwiają dodawanie i usuwanie poszczególnych węzłów drzewa z kolekcji.

Uwaga

Wyliczanie kolekcji i usuwanie węzłów nie jest obsługiwane.

Możesz również użyć AddRange metod lub Clear , aby dodać lub usunąć wszystkie węzły drzewa z kolekcji.

Klasy nie mogą dziedziczyć z TreeNodeCollection klasy.

Właściwości

Count

Pobiera łączną liczbę TreeNode obiektów w kolekcji.

IsReadOnly

Pobiera wartość wskazującą, czy kolekcja jest przeznaczona tylko do odczytu.

Item[Int32]

Pobiera lub ustawia TreeNode wartość w określonej indeksowanej lokalizacji w kolekcji.

Item[String]

Pobiera węzeł drzewa z określonym kluczem z kolekcji.

Metody

Add(String)

Dodaje nowy węzeł drzewa z określonym tekstem etykiety na końcu bieżącej kolekcji węzłów drzewa.

Add(String, String)

Tworzy nowy węzeł drzewa z określonym kluczem i tekstem i dodaje go do kolekcji.

Add(String, String, Int32)

Tworzy węzeł drzewa z określonym kluczem, tekstem i obrazem i dodaje go do kolekcji.

Add(String, String, Int32, Int32)

Tworzy węzeł drzewa z określonym kluczem, tekstem i obrazami oraz dodaje go do kolekcji.

Add(String, String, String)

Tworzy węzeł drzewa z określonym kluczem, tekstem i obrazem i dodaje go do kolekcji.

Add(String, String, String, String)

Tworzy węzeł drzewa z określonym kluczem, tekstem i obrazami oraz dodaje go do kolekcji.

Add(TreeNode)

Dodaje wcześniej utworzony węzeł drzewa na końcu kolekcji węzłów drzewa.

AddRange(TreeNode[])

Dodaje tablicę wcześniej utworzonych węzłów drzewa do kolekcji.

Clear()

Usuwa wszystkie węzły drzewa z kolekcji.

Contains(TreeNode)

Określa, czy określony węzeł drzewa jest członkiem kolekcji.

ContainsKey(String)

Określa, czy kolekcja zawiera węzeł drzewa z określonym kluczem.

CopyTo(Array, Int32)

Kopiuje całą kolekcję do istniejącej tablicy w określonej lokalizacji w tablicy.

Equals(Object)

Określa, czy dany obiekt jest taki sam, jak bieżący obiekt.

(Odziedziczone po Object)
Find(String, Boolean)

Znajduje węzły drzewa z określonym kluczem, opcjonalnie wyszukując podwęźle.

GetEnumerator()

Zwraca moduł wyliczający, który może służyć do iterowania w kolekcji węzłów drzewa.

GetHashCode()

Służy jako domyślna funkcja skrótu.

(Odziedziczone po Object)
GetType()

Type Pobiera bieżące wystąpienie.

(Odziedziczone po Object)
IndexOf(TreeNode)

Zwraca indeks określonego węzła drzewa w kolekcji.

IndexOfKey(String)

Zwraca indeks pierwszego wystąpienia węzła drzewa z określonym kluczem.

Insert(Int32, String)

Tworzy węzeł drzewa z określonym tekstem i wstawia go do określonego indeksu.

Insert(Int32, String, String)

Tworzy węzeł drzewa z określonym tekstem i kluczem i wstawia go do kolekcji.

Insert(Int32, String, String, Int32)

Tworzy węzeł drzewa z określonym kluczem, tekstem i obrazem i wstawia go do kolekcji w określonym indeksie.

Insert(Int32, String, String, Int32, Int32)

Tworzy węzeł drzewa z określonym kluczem, tekstem i obrazami i wstawia go do kolekcji w określonym indeksie.

Insert(Int32, String, String, String)

Tworzy węzeł drzewa z określonym kluczem, tekstem i obrazem i wstawia go do kolekcji w określonym indeksie.

Insert(Int32, String, String, String, String)

Tworzy węzeł drzewa z określonym kluczem, tekstem i obrazami i wstawia go do kolekcji w określonym indeksie.

Insert(Int32, TreeNode)

Wstawia istniejący węzeł drzewa do kolekcji węzłów drzewa w określonej lokalizacji.

MemberwiseClone()

Tworzy płytkią kopię bieżącego Objectelementu .

(Odziedziczone po Object)
Remove(TreeNode)

Usuwa określony węzeł drzewa z kolekcji węzłów drzewa.

RemoveAt(Int32)

Usuwa węzeł drzewa z kolekcji węzłów drzewa w określonym indeksie.

RemoveByKey(String)

Usuwa węzeł drzewa z określonym kluczem z kolekcji.

ToString()

Zwraca ciąg reprezentujący bieżący obiekt.

(Odziedziczone po Object)

Jawne implementacje interfejsu

ICollection.IsSynchronized

Pobiera wartość wskazującą, czy dostęp do kolekcji jest synchronizowany (bezpieczny wątek).

ICollection.SyncRoot

Pobiera obiekt, który może służyć do synchronizowania dostępu do kolekcji.

IList.Add(Object)

Dodaje obiekt na końcu kolekcji węzłów drzewa.

IList.Contains(Object)

Określa, czy określony węzeł drzewa jest członkiem kolekcji.

IList.IndexOf(Object)

Zwraca indeks określonego węzła drzewa w kolekcji.

IList.Insert(Int32, Object)

Wstawia istniejący węzeł drzewa w kolekcji węzłów drzewa w określonej lokalizacji.

IList.IsFixedSize

Pobiera wartość wskazującą, czy kolekcja węzłów drzewa ma stały rozmiar.

IList.Item[Int32]

Pobiera lub ustawia węzeł drzewa w określonym indeksie w kolekcji.

IList.Remove(Object)

Usuwa określony węzeł drzewa z kolekcji węzłów drzewa.

Metody rozszerzania

Cast<TResult>(IEnumerable)

Rzutuje elementy elementu IEnumerable na określony typ.

OfType<TResult>(IEnumerable)

Filtruje elementy elementu IEnumerable na podstawie określonego typu.

AsParallel(IEnumerable)

Umożliwia równoległość zapytania.

AsQueryable(IEnumerable)

Konwertuje element IEnumerable na .IQueryable

Dotyczy

Zobacz też