Vertragsverwaltung-Klassenbibliothek  

ComboBoxTree_ComboBox.TreeView_AfterSelect -Methode

[Visual Basic]
Private Sub TreeView_AfterSelect( _ 
ByVal sender As Object, _ 
ByVal e As TreeViewEventArgs
) Handles _ 
TreeView.AfterSelect

Parameter

sender
e

Quellcode

[Visual Basic]
        Private Sub TreeView_AfterSelect(ByVal sender As Object, ByVal e As System.Windows.Forms.TreeViewEventArgs) Handles TreeView.AfterSelect 
Me.Items.Clear() 
Me.Items.Add(New TreeNodeEx(e.Node)) 
Me.SelectedIndex = 0 
 
If e.Action = TreeViewAction.ByMouse Then 
FocusOnMouseLeave = True 
Me.DroppedDown = False 
End If 
 
RaiseEvent AfterSelect() 
End Sub

Forderungen

Plattformen: Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

Siehe auch

ComboBoxTree_ComboBox