Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6578323
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T15:45:23+00:00 2026-05-25T15:45:23+00:00

In WPF when the MouseMove event is triggered, I want to check if the

  • 0

In WPF when the MouseMove event is triggered, I want to check if the left mouse key is pressed, if it’s pressed I want to do some calculation.

I have tried this:

private void Window_MouseMove(object sender, MouseEventArgs e)
{
    if (e.LeftButton == MouseButtonState.Pressed)
    {
        Calculate();
    }

 }

But when I left-click and hold and move the mouse around the screen the Calculate() only gets called one time (i.e when the mouse starts moving), after that no matter where I move the mouse the method does not get called.

I want the Calculate() method to get called repeatedly while the mouse is moving and while the left mouse key is pressed.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T15:45:23+00:00Added an answer on May 25, 2026 at 3:45 pm

    A simple test for me shows this working:

    private void MouseMoveEvent(object sender, MouseEventArgs e)
    {
        if (e.LeftButton == MouseButtonState.Pressed)
        {
           _vm.MoveCount++;
        }
    }
    

    A would suspect that your Calculate method is a synchronous method that’s causing problems.

    Try calling the method like below. This will start the calculate method in a new thread. Then the updating of the text box will happen in the original thread.

        private void WindowMouseMoveEvent(object sender, MouseEventArgs e)
        {
            if (e.LeftButton == MouseButtonState.Pressed)
            {
                var worker = new BackgroundWorker();
                worker.DoWork += Calculate;
                worker.RunWorkerCompleted += 
                    (o, args) => myTextBox.Text = (string)args.Result;
                worker.RunWorkerAsync();
            }
        }
    
    
        private void Calculate(object sender, DoWorkEventArgs args)
        {
            //do work
            args.Result = "my new value"
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a custom WPF control which consist of single TextBox <UserControl HorizontalAlignment=Left x:Class=WPFDiagramDesignerControl.Components.UcWBSBlock
I need to change the mouse cursor while the left mouse button is pressed.
I have a WPF ParentUserControl and some ChildUserControlA ChildUserControlB etc. (also WPF controls) The
WPF controls have certain properties (UserControl.Resources, UserControl.CommandBindings) that can have items added to them
In WPF, is there any way to have the Text property of a TextBlock
I'm trying to have a WPF canvas with rounded rectangles on that I can
I have a WPF ItemsControl with a Canvas ItemPanel. Drawing from an internal source,
I am trying to loop through some controls in a Powershell / WPF application.
I have the following code in a WPF application using Reactive Extensions for .NET:
I'd like to create a WPF app that traces the location of the mouse

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.