问题
I have a picturebox and 2 events:
picbox.Click += new System.EventHandler(clickpicbox);
picbox.DoubleClick += new System.EventHandler(picbox_DoubleClick);
Now, the click event works just fine but the doubleclick doesn't even get fired!!
What might cause this?
If I remove the Click event then the doublecklick gets fired, so it's weird..
I have nothing in those events by the way, as I'm testing what it may be I did not include any code in the actual functions for each event..
Thanks!
来源:https://stackoverflow.com/questions/18305572/picturebox-doubleclick-and-click-events