Tuesday, 31 October 2017

Move Mouse Cursor Automatically C#

10/31/2017 - By Pranav Singh 0

This article will show you how you can move mouse cursor automatically on button click using c#.net in your windows application. This will help yo understand move mouse pointer using c#, c# set mouse position, c# simulate mouse move.

Now for this article first we will create a new windows application and add a button control. On this click event of button control we will add the below code.

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace MoveMyMouse
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void btnMove_Click(object sender, EventArgs e)
        {
            Cursor = new Cursor(Cursor.Current.Handle);
            Cursor.Position = new Point(Cursor.Position.X - 20, Cursor.Position.Y - 20);
        }
    }
}


Here in above code I have created handler for cursor and then reset the cursor position by adding dome value on x and y coordinate. And at end I have reset the cursor position.


Here in above output you will see that as i click on button mouse is moving automatically to other position or cursor changing position.

About the Author

We are the group of people who are expertise in different Microsoft technology like Asp.Net,MVC,C#.Net,VB.Net,Windows Application,WPF,jQuery,Javascript,HTML. This blog is designed to share the knowledge.

Get Updates

Subscribe to our e-mail newsletter to receive updates.

Share This Post

0 comments:

Please let me know your view

Free Ebooks


About Us

We are the group of people who are expertise in different Microsoft technology like Asp.Net,MVC,C#.Net,VB.Net,Windows Application,WPF,jQuery,Javascript,HTML. This blog is designed to share the knowledge.

Contact Us

For writing article in this website please send request by your

GMAIL ID: dotnetpools@gmail.com

Bugs and Suggestions

As we all know that this website is for sharing knowledge and providing proper solution. So while reading the article is you find any bug or if you have any suggestion please mail us at contact@aspdotnet-pools.com.

Partners


Global Classified : Connectseekers.com
© 2014 aspdotnet-pools.com Designed by Bloggertheme9.
back to top