I'm sorry to ask kinda a newbie question here... But I've been searching the webs for an old tutorial on MSDN that had a good portion of what I need, but to no avail... Now I need to ask since I'm at a loss, and I could not find what I was looking for...
Ok...
I have a PictureBox that I need to link to the LeftClick, RightClick and DblClick events. I remembered the tutorial being layed out like this...
Except I can't remember what the actual legit code for this to work is...
Thanks in advance.
Ok...
I have a PictureBox that I need to link to the LeftClick, RightClick and DblClick events. I remembered the tutorial being layed out like this...
Code:
ClickHandler(object sender, EventArgs ex) {
switch(ex) {
case ex.LeftClick:
...
case ex.RightClick:
...
case ex.DblClick:
...
}
}
Thanks in advance.
Comment