Control.MousePosition Proprietà

Definizione

Ottiene la posizione del cursore del mouse in base alle coordinate dello schermo.

public:
 static property System::Drawing::Point MousePosition { System::Drawing::Point get(); };
public static System.Drawing.Point MousePosition { get; }
static member MousePosition : System.Drawing.Point
Public Shared ReadOnly Property MousePosition As Point

Valore della proprietà

Oggetto Point che contiene le coordinate del cursore del mouse in relazione all'angolo superiore sinistro dello schermo.

Esempio

L'esempio di codice seguente inserisce un'etichetta TreeNode in uno stato modificabile quando l'utente preme ALT+E mentre il cursore del mouse si trova sul nodo albero. Dopo aver modificato l'etichetta, le etichette non possono essere modificate di nuovo fino a quando non viene premuta di nuovo la combinazione ALT+E. In questo esempio è necessario disporre di un TreeView oggetto in un Formoggetto . La visualizzazione albero deve avere almeno una TreeNode nella raccolta Nodes .

private:
   void treeView1_KeyDown( Object^ /*sender*/, KeyEventArgs^ e )
   {
      /* If the 'Alt' and 'E' keys are pressed,
         * allow the user to edit the TreeNode label. */
      if ( e->Alt && e->KeyCode == Keys::E )
      {
         treeView1->LabelEdit = true;
         
         // If there is a TreeNode under the mouse cursor, begin editing.
         TreeNode^ editNode = treeView1->GetNodeAt( treeView1->PointToClient( Control::MousePosition ) );
         if ( editNode != nullptr )
         {
            editNode->BeginEdit();
         }
      }
   }

   void treeView1_AfterLabelEdit( Object^ /*sender*/, NodeLabelEditEventArgs^ /*e*/ )
   {
      // Disable the ability to edit the TreeNode labels.
      treeView1->LabelEdit = false;
   }
private void treeView1_KeyDown(object sender, KeyEventArgs e)
{
   /* If the 'Alt' and 'E' keys are pressed,
      * allow the user to edit the TreeNode label. */
   if(e.Alt && e.KeyCode == Keys.E)
         
   {
      treeView1.LabelEdit = true;
      // If there is a TreeNode under the mouse cursor, begin editing. 
      TreeNode editNode = treeView1.GetNodeAt(
         treeView1.PointToClient(System.Windows.Forms.Control.MousePosition));
      if(editNode != null)
      { 
         editNode.BeginEdit();
      }
   }
}

private void treeView1_AfterLabelEdit(object sender, NodeLabelEditEventArgs e)
{
   // Disable the ability to edit the TreeNode labels.
   treeView1.LabelEdit = false;
}
Private Sub treeView1_KeyDown(sender As Object, _
  e As KeyEventArgs) Handles treeView1.KeyDown
   ' If the 'Alt' and 'E' keys are pressed,
   ' allow the user to edit the TreeNode label. 
   If e.Alt And e.KeyCode = Keys.E Then
      treeView1.LabelEdit = True
      ' If there is a TreeNode under the mouse cursor, begin editing. 
      Dim editNode As TreeNode = treeView1.GetNodeAt( _
        treeView1.PointToClient(System.Windows.Forms.Control.MousePosition))
      If (editNode IsNot Nothing) Then
         editNode.BeginEdit()
      End If
   End If
End Sub

Private Sub treeView1_AfterLabelEdit(sender As Object, _
  e As NodeLabelEditEventArgs) Handles treeView1.AfterLabelEdit
   ' Disable the ability to edit the TreeNode labels.
   treeView1.LabelEdit = False
End Sub

Commenti

La MousePosition proprietà restituisce un oggetto Point che rappresenta la posizione del cursore del mouse al momento del riferimento alla proprietà. Le coordinate indicano la posizione sullo schermo, non relativa al controllo e vengono restituite indipendentemente dal fatto che il cursore sia posizionato sul controllo. Le coordinate dell'angolo superiore sinistro dello schermo sono 0,0.

La MousePosition proprietà è identica alla Cursor.Position proprietà.

Si applica a

Vedi anche