Control.MousePosition Propiedad

Definición

Obtiene la posición del cursor del mouse en coordenadas de pantalla.

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

Valor de propiedad

Point

Point que contiene las coordenadas del cursor del mouse con relación a la esquina superior izquierda de la pantalla.

Ejemplos

En el ejemplo de código siguiente se coloca una TreeNode etiqueta en un estado editable cuando el usuario presiona ALT+E mientras el cursor del mouse está sobre el nodo de árbol. Una vez que el usuario haya terminado de editar la etiqueta, las etiquetas no se podrán volver a editar hasta que se vuelva a presionar la combinación de teclas ALT+E. En este ejemplo se requiere que tenga un TreeView objeto en un Form. La vista de árbol también debe tener al menos una TreeNode en su Nodes colección.

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

Comentarios

La MousePosition propiedad devuelve un Point objeto que representa la posición del cursor del mouse en el momento en que se hizo referencia a la propiedad. Las coordenadas indican la posición en la pantalla, no en relación con el control, y se devuelven independientemente de si el cursor se coloca sobre el control. Las coordenadas de la esquina superior izquierda de la pantalla son 0,0.

La MousePosition propiedad es idéntica a la Cursor.Position propiedad .

Se aplica a

Consulte también