TreeNodeCollection Classe
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Rappresenta una raccolta di oggetti TreeNode.
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
- Ereditarietà
-
TreeNodeCollection
- Implementazioni
Esempio
Nell'esempio di codice seguente vengono visualizzate le informazioni sui clienti in un TreeView controllo . I nodi dell'albero radice visualizzano i nomi dei clienti e i nodi dell'albero figlio visualizzano i numeri di ordine assegnati a ogni cliente. In questo esempio vengono visualizzati 1.000 clienti con 15 ordini ciascuno. L'aggiornamento dell'oggetto TreeView viene eliminato utilizzando i BeginUpdate metodi e EndUpdate e viene visualizzata un'attesa Cursor mentre crea TreeView e disegna gli TreeNode oggetti. In questo esempio è necessario disporre di un Customer
oggetto che può contenere una raccolta di Order
oggetti . È inoltre necessario che sia stata creata un'istanza di un TreeView controllo in un oggetto 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
Commenti
I Addmetodi , Removee RemoveAt consentono di aggiungere e rimuovere singoli nodi della struttura ad albero dalla raccolta.
Nota
L'enumerazione della raccolta e la rimozione dei nodi non è supportata.
È anche possibile usare i AddRange metodi o Clear per aggiungere o rimuovere tutti i nodi della struttura ad albero dalla raccolta.
Le classi non possono ereditare dalla TreeNodeCollection classe .
Proprietà
Count |
Ottiene il numero totale di oggetti TreeNode dell'insieme. |
IsReadOnly |
Ottiene un valore che indica se la raccolta è di sola lettura. |
Item[Int32] |
Ottiene o imposta l'oggetto TreeNode in corrispondenza della posizione indicizzata specificata nell'insieme. |
Item[String] |
Ottiene il nodo della struttura ad albero con la chiave specificata dall'insieme. |
Metodi
Add(String) |
Aggiunge un nuovo nodo della struttura ad albero con il testo di etichetta specificato alla fine dell'insieme corrente dei nodi della struttura ad albero. |
Add(String, String) |
Crea un nuovo nodo della struttura ad albero con la chiave e il testo specificati e lo aggiunge all'insieme. |
Add(String, String, Int32) |
Crea un nodo della struttura ad albero con la chiave, il testo e l'immagine specificati e lo aggiunge all'insieme. |
Add(String, String, Int32, Int32) |
Crea un nodo della struttura ad albero con la chiave, il testo e le immagini specificati e lo aggiunge all'insieme. |
Add(String, String, String) |
Crea un nodo della struttura ad albero con la chiave, il testo e l'immagine specificati e lo aggiunge all'insieme. |
Add(String, String, String, String) |
Crea un nodo della struttura ad albero con la chiave, il testo e le immagini specificati e lo aggiunge all'insieme. |
Add(TreeNode) |
Aggiunge un nodo della struttura ad albero precedentemente creato alla fine dell'insieme dei nodi della struttura ad albero. |
AddRange(TreeNode[]) |
Aggiunge una matrice di nodi della struttura ad albero precedentemente creati all'insieme. |
Clear() |
Rimuove tutti i nodi della struttura ad albero dall'insieme. |
Contains(TreeNode) |
Determina se il nodo della struttura ad albero specificato è un membro dell'insieme. |
ContainsKey(String) |
Consente di stabilire se l'insieme contiene un nodo della struttura ad albero con la chiave specificata. |
CopyTo(Array, Int32) |
Copia l'intero insieme in una posizione specifica all'interno di una matrice esistente. |
Equals(Object) |
Determina se l'oggetto specificato è uguale all'oggetto corrente. (Ereditato da Object) |
Find(String, Boolean) |
Trova i nodi della struttura ad albero con la chiave specificata, ricercando, se lo si desidera, i sottonodi. |
GetEnumerator() |
Restituisce un enumeratore che può essere utilizzato per scorrere l'insieme dei nodi della struttura ad albero. |
GetHashCode() |
Funge da funzione hash predefinita. (Ereditato da Object) |
GetType() |
Ottiene l'oggetto Type dell'istanza corrente. (Ereditato da Object) |
IndexOf(TreeNode) |
Restituisce l'indice del nodo della struttura ad albero specificato nell'insieme. |
IndexOfKey(String) |
Restituisce l'indice della prima occorrenza di un nodo della struttura ad albero con la chiave specificata. |
Insert(Int32, String) |
Crea un nodo della struttura ad albero con il testo specificato e lo inserisce in corrispondenza dell'indice specificato. |
Insert(Int32, String, String) |
Crea un nodo della struttura ad albero con il testo e la chiave specificati e lo inserisce nell'insieme. |
Insert(Int32, String, String, Int32) |
Crea un nodo della struttura ad albero con la chiave, il testo e l'immagine specificati e lo inserisce nell'insieme in corrispondenza dell'indice specificato. |
Insert(Int32, String, String, Int32, Int32) |
Crea un nodo della struttura ad albero con la chiave, il testo e le immagini specificati e lo inserisce nell'insieme in corrispondenza dell'indice specificato. |
Insert(Int32, String, String, String) |
Crea un nodo della struttura ad albero con la chiave, il testo e l'immagine specificati e lo inserisce nell'insieme in corrispondenza dell'indice specificato. |
Insert(Int32, String, String, String, String) |
Crea un nodo della struttura ad albero con la chiave, il testo e le immagini specificati e lo inserisce nell'insieme in corrispondenza dell'indice specificato. |
Insert(Int32, TreeNode) |
Inserisce un nodo della struttura ad albero esistente nell'insieme dei nodi della struttura ad albero in corrispondenza della posizione specificata. |
MemberwiseClone() |
Crea una copia superficiale dell'oggetto Object corrente. (Ereditato da Object) |
Remove(TreeNode) |
Rimuove il nodo della struttura ad albero specificato dall'insieme dei nodi della struttura ad albero. |
RemoveAt(Int32) |
Rimuove il nodo della struttura ad albero dall'insieme dei nodi della struttura ad albero in corrispondenza dell'indice specificato. |
RemoveByKey(String) |
Rimuove il nodo della struttura ad albero con la chiave specificata dall'insieme. |
ToString() |
Restituisce una stringa che rappresenta l'oggetto corrente. (Ereditato da Object) |
Implementazioni dell'interfaccia esplicita
ICollection.IsSynchronized |
Ottiene un valore che indica se l'accesso alla raccolta è sincronizzato (thread-safe). |
ICollection.SyncRoot |
Ottiene un oggetto che può essere usato per sincronizzare l'accesso alla raccolta. |
IList.Add(Object) |
Aggiunge un oggetto alla fine dell'insieme di nodi della struttura ad albero. |
IList.Contains(Object) |
Determina se il nodo della struttura ad albero specificato è un membro dell'insieme. |
IList.IndexOf(Object) |
Restituisce l'indice del nodo della struttura ad albero specificato nell'insieme. |
IList.Insert(Int32, Object) |
Inserisce un nodo della struttura ad albero esistente nell'insieme dei nodi della struttura ad albero in corrispondenza della posizione specificata. |
IList.IsFixedSize |
Ottiene un valore che indica se le dimensioni dell'insieme dei nodi della struttura ad albero sono fisse. |
IList.Item[Int32] |
Ottiene o imposta il nodo della struttura ad albero in corrispondenza dell'indice specificato nell'insieme. |
IList.Remove(Object) |
Rimuove il nodo della struttura ad albero specificato dall'insieme dei nodi della struttura ad albero. |
Metodi di estensione
Cast<TResult>(IEnumerable) |
Esegue il cast degli elementi di un oggetto IEnumerable nel tipo specificato. |
OfType<TResult>(IEnumerable) |
Filtra gli elementi di un oggetto IEnumerable in base a un tipo specificato. |
AsParallel(IEnumerable) |
Consente la parallelizzazione di una query. |
AsQueryable(IEnumerable) |
Converte un oggetto IEnumerable in un oggetto IQueryable. |