Imports Infragistics.Win
Imports Infragistics.Win.Layout
Imports Infragistics.Win.UltraWinTree
Private Sub ultraTree1_BeforeDataNodesCollectionPopulated(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinTree.BeforeDataNodesCollectionPopulatedEventArgs) Handles ultraTree1.BeforeDataNodesCollectionPopulated
If Not e.Nodes.ParentNode Is Nothing Then
Debug.WriteLine("Populating nodes collection for '" + e.Nodes.ParentNode.Text + "'...")
Else
Debug.WriteLine("Populating root nodes collection...")
End If
End Sub
Private Sub ultraTree1_AfterDataNodesCollectionPopulated(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinTree.AfterDataNodesCollectionPopulatedEventArgs) Handles ultraTree1.AfterDataNodesCollectionPopulated
If Not e.Nodes.ParentNode Is Nothing Then
Debug.WriteLine("Nodes collection for '" + e.Nodes.ParentNode.Text + "' populated.")
Else
Debug.WriteLine("Root nodes collection populated.")
End If
End Sub