J
JJ
Hi All,
I need to create a MouseDown event for a picture box . Am I doing the
following right?
pictureBox.MouseDown += new
System.WinForms.MouseEventHandler(pictureBox_MouseDown)
Then
Create Event
public void pictureBox_OnMouseDown(object sender,
System.WinForms.MouseEventArgs e)
{
// code etc....
}
Thanks,
JJ
I need to create a MouseDown event for a picture box . Am I doing the
following right?
pictureBox.MouseDown += new
System.WinForms.MouseEventHandler(pictureBox_MouseDown)
Then
Create Event
public void pictureBox_OnMouseDown(object sender,
System.WinForms.MouseEventArgs e)
{
// code etc....
}
Thanks,
JJ