in VS.NET, how do I find the coordinates of a mousedown event?
in VB6, it was provided by the event handler, like so:
Private Sub Label1_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
But in .NET (C# or VB) I don't know how to find out the coords with the event handler:
private void label1_MouseDown(object sender, System.Windows.Forms.MouseEventArgs e)