TreeViewAction Enumeration
Assembly: System.Windows.Forms (in system.windows.forms.dll)
| Member name | Description | |
|---|---|---|
![]() | ByKeyboard | The event was caused by a keystroke. |
![]() | ByMouse | The event was caused by a mouse operation. |
![]() | Collapse | The event was caused by the TreeNode collapsing. |
![]() | Expand | The event was caused by the TreeNode expanding. |
![]() | Unknown | The action that caused the event is unknown. |
This enumeration is used by members such as the TreeViewEventArgs constructor.
The following code example demonstrates how to use the TreeView.AfterSelect event and the TreeViewAction enumeration. To run the example paste the following code in a form containing a TreeView control named TreeView1. This example assumes TreeView1 is populated with items and the TreeView.AfterSelect event is connected to the event-handling method defined in the sample.
' Handle the After_Select event. Private Sub TreeView1_AfterSelect(ByVal sender As System.Object, _ ByVal e As System.Windows.Forms.TreeViewEventArgs) _ Handles TreeView1.AfterSelect ' Vary the response depending on which TreeViewAction ' triggered the event. Select Case (e.Action) Case TreeViewAction.ByKeyboard MessageBox.Show("You like the keyboard!") Case TreeViewAction.ByMouse MessageBox.Show("You like the mouse!") End Select End Sub
// Handle the After_Select event.
private void treeView1_AfterSelect(Object sender,
System.Windows.Forms.TreeViewEventArgs e)
{
// Vary the response depending on which TreeViewAction
// triggered the event.
switch (e.get_Action()) {
case TreeViewAction.ByKeyboard:
MessageBox.Show("You like the keyboard!");
break;
case TreeViewAction.ByMouse:
MessageBox.Show("You like the mouse!");
break;
}
} //treeView1_AfterSelect
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
