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 8308095
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T18:41:38+00:00 2026-06-08T18:41:38+00:00

I am working on a WPF project where I have to import data from

  • 0

I am working on a WPF project where I have to import data from a lot of single files.
The actual importing of those files and the data in them is being done in a backgroundworker doWork method.
It works like a charm, does the job and updating a progress bar also works perfectly.

Now though, depending on what I encounter in those files, I occasionally need to get a decision from the User before I can proceed processing the current file.

What is the best way to open a window/dialog, getting the values set in there back into the backgroundworker.doWork method and continue processing?

Is that even possible with a backgroundworker or do I need to keep that processing logic in the main/UI thread and update the progress bar from there somehow?

I hope some of you can give me some hints or point me to other resources since I have not found much useful information for my specific problem.

  • 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-06-08T18:41:40+00:00Added an answer on June 8, 2026 at 6:41 pm

    Background worker works in a different thread. You can not invoke UI directly from a background thread. One way of achiving what you are trying to do is by using a flag and Dispatcher to invoke UI for user input

        bool WaitFor_Input = false; //flag to indicate user input status
    
        private void ThreadRun()
        {
            //THIS IS IN Background worker thread
            //do task
            WaitFor_Input = true;
            //ask for user input
            Dispatcher.BeginInvoke(new Action(Show_Dialogue), null);
            while (WaitFor_Input); //Background worker waits untill user input is complete
            //continue further processing
        }
    
        private void Show_Dialogue()
        {
            //THIS IS IN UI THREAD
            //show your dialogue box here, update data variables
            //finally set
            WaitFor_Input = false;
        }
    

    Keeping processing logic in a background thread is actually a good idea.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have been working on a C# 4.0 WPF project and need to figure
I am working on a WPF MVVM Project. Now i have a DataGrid in
I have a WPF C# project that I am working on and I have
I'm working on a solution where I have a WPF project that is using
I am working on a TcpClient Asynchronous requesting WPF project. In which I have
I'm working on a WPF project and have implemented a very simple way to
I am currently working on a wpf project in C#. I have a treeview
I'm currently working on a project where we have a lot of dependencies. I
I have a WPF project in C# I am working on. I have a
I am working on a project on WPF and I have to create some

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.