TreeViewAction Enumerazione

Definizione

Specifica l'azione che ha generato un evento TreeViewEventArgs.

public enum class TreeViewAction
public enum TreeViewAction
type TreeViewAction = 
Public Enum TreeViewAction
Ereditarietà
TreeViewAction

Campi

ByKeyboard 1

L'evento è stato causato da una sequenza di tasti.

ByMouse 2

L'evento è stato causato da una operazione con il mouse.

Collapse 3

L'evento è stato causato dalla compressione dell'oggetto TreeNode.

Expand 4

L'evento è stato causato dall'espansione dell'oggetto TreeNode.

Unknown 0

L'azione che ha generato l'evento è sconosciuta.

Esempio

Nell'esempio di codice seguente viene illustrato come usare l'evento e l'enumerazione TreeView.AfterSelectTreeViewAction . Per eseguire l'esempio incollare il codice seguente in un modulo contenente un controllo TreeView denominato TreeView1. In questo esempio si presuppone che TreeView1 venga popolato con elementi e l'evento TreeView.AfterSelect sia connesso al metodo di gestione degli eventi definito nell'esempio.

private:
   // Handle the After_Select event.
   void TreeView1_AfterSelect( System::Object^ /*sender*/, System::Windows::Forms::TreeViewEventArgs^ e )
   {
      
      // Vary the response depending on which TreeViewAction
      // triggered the event. 
      switch ( (e->Action) )
      {
         case TreeViewAction::ByKeyboard:
            MessageBox::Show( "You like the keyboard!" );
            break;

         case TreeViewAction::ByMouse:
            MessageBox::Show( "You like the mouse!" );
            break;
      }
   }
// Handle the After_Select event.
private void TreeView1_AfterSelect(System.Object sender, 
    System.Windows.Forms.TreeViewEventArgs e)
{

    // Vary the response depending on which TreeViewAction
    // triggered the event. 
    switch((e.Action))
    {
        case TreeViewAction.ByKeyboard:
            MessageBox.Show("You like the keyboard!");
            break;
        case TreeViewAction.ByMouse:
            MessageBox.Show("You like the mouse!");
            break;
    }
}
' 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

Commenti

Questa enumerazione viene usata dai membri, ad esempio il TreeViewEventArgs costruttore.

Si applica a

Vedi anche