This documentation is archived and is not being maintained.

TreeView.NodeMouseClick Event

Occurs when the user clicks a TreeNode with the mouse.

Namespace:  System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

'Declaration
Public Event NodeMouseClick As TreeNodeMouseClickEventHandler
'Usage
Dim instance As TreeView 
Dim handler As TreeNodeMouseClickEventHandler 

AddHandler instance.NodeMouseClick, handler

This event occurs when the user clicks any portion of a tree node with the mouse, including the plus sign (+) or minus sign (-) that indicates whether the node is collapsed or expanded.

For more information about handling events, see Consuming Events.

The following code example demonstrates how to handle the NodeMouseClick event.

Sub treeView1_NodeMouseClick(ByVal sender As Object, _
    ByVal e As TreeNodeMouseClickEventArgs) _
    Handles treeView1.NodeMouseClick

    textBox1.Text = e.Node.Text

End Sub 'treeView1_NodeMouseClick

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5, 3.0, 2.0
Show: