↧
C# simulate a mouse click?
I am not sure if I am understanding what you are trying to accomplish but can you not just do this; this.OnDeactivate += Form1_MouseClick; void Form1_MouseClick(object sender, MouseEventArgs e) {...
View ArticleC# simulate a mouse click?
When I read the link, this is what it told me to do: this.OnMouseClick(new MouseEventArgs(MouseButtons.Left,1,100,100,0));
View ArticleC# simulate a mouse click?
Hiya, I have tried to follow the msdn article (http://msdn.microsoft.com/en-us/library/ms171548.aspx) on how to simulate mouse clicks. However, I don't understant it, or it doesn't do what I want it to...
View Article