Sdílet prostřednictvím


Control.MousePosition Vlastnost

Definice

Získá pozici kurzoru myši v souřadnicích obrazovky.

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

Hodnota vlastnosti

Point

A Point obsahující souřadnice kurzoru myši vzhledem k levému hornímu rohu obrazovky.

Příklady

Následující příklad kódu vloží TreeNode popisek do upravitelného stavu, když uživatel stiskne alt+E, zatímco kurzor myši je nad uzlem stromu. Jakmile uživatel dokončí úpravy popisku, nebude možné popisky znovu upravit, dokud se znovu nestiskne kombinace kláves ALT+E. Tento příklad vyžaduje, abyste měli TreeView na Form. Stromové zobrazení by také mělo mít v kolekci Nodes alespoň jednoTreeNode.

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

Poznámky

Vlastnost MousePosition vrátí Point hodnotu, která představuje pozici kurzoru myši v době, kdy byla vlastnost odkazována. Souřadnice označují pozici na obrazovce, nikoli vzhledem k ovládacímu prvku, a jsou vráceny bez ohledu na to, jestli je kurzor umístěn nad ovládacím prvku. Souřadnice levého horního rohu obrazovky jsou 0,0.

Vlastnost MousePosition je stejná jako vlastnost Cursor.Position .

Platí pro

Viz také