MouseEventArgs.Location Proprietà

Definizione

Ottiene la posizione del mouse durante la generazione del relativo evento.

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

Valore della proprietà

Point

Oggetto Point che contiene le coordinate x e y- mouse, in pixel, rispetto all'angolo superiore sinistro del controllo.

Esempio

Nell'esempio di codice seguente viene usata la Location proprietà per tenere traccia dei clic del mouse sinistro e disegnare una serie di segmenti di linea retta in risposta all'input dell'utente. L'esempio non mantiene le linee disegnate se si nasconde il modulo e quindi lo ridisplay; questo codice è stato omesso per semplicità.

Point firstPoint;
Boolean haveFirstPoint;

public void EnableDrawing()
{
    this.MouseDown += new MouseEventHandler(Form1_MouseDownDrawing);
}

void Form1_MouseDownDrawing(object sender, System.Windows.Forms.MouseEventArgs e)
{
    if (haveFirstPoint)
    {
        Graphics g = this.CreateGraphics();
        g.DrawLine(Pens.Black, firstPoint, e.Location);
        haveFirstPoint = false;
    }
    else
    {
        firstPoint = e.Location;
        haveFirstPoint = true;
    }
}
Dim FirstPoint As Point
Dim HaveFirstPoint As Boolean = False

Private Sub Form1_MouseDownDrawing(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Me.MouseDown
    If HaveFirstPoint Then
        Dim g As Graphics = Me.CreateGraphics()
        g.DrawLine(Pens.Black, FirstPoint, e.Location)
        HaveFirstPoint = False
    Else
        FirstPoint = e.Location
        HaveFirstPoint = True
    End If
End Sub

Si applica a

Vedi anche