How to Capture / Handle Mouse Movement in c#.NET form.
Here is the code.
public Form1( ) { InitializeComponent(); this.MouseMove += new MouseEventHandler(Form1_MouseMove); } void Form1_MouseMove(object sender , MouseEventArgs e) { label1.Text= e.Location; }
Also take a look at following links.
Mouse and Keyboard library
Handling Mouse Events in C#
Got Question, Ask in Forum
Here is the code.
Also take a look at following links.
Mouse and Keyboard library
Handling Mouse Events in C#