Click here to Skip to main content
15,891,375 members

How use BackgroundWorker thread In My App

abbaspirmoradi asked:

Open original thread
Hi Every Body.
I Have CircularProgressBar that is a User Control.I Create a Window with Name Of Printer And Add CircularProgressBar to it.
In my App I will When I connect to Sql And Load Data CircularProgressBar is shown And when this Loading finished it disappear.
then I use BackgroundWorker thread for this Mean.this is my code:
in public
C#
Printer p = new Printer();
BackgroundWorker bw = new BackgroundWorker();
bw.WorkerReportsProgress = true;
bw.WorkerSupportsCancellation = true;
bw.DoWork += new DoWorkEventHandler(bw_DoWork);
bw.ProgressChanged += new ProgressChangedEventHandler(bw_ProgressChanged);
bw.RunWorkerCompleted += new RunWorkerCompletedEventHandler(bw_RunWorkerCompleted);

When Button View Clicked:
C#
private void View_Click(object sender, RoutedEventArgs e)
      {
           bw.RunWorkerAsync();

      }
  private void bw_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e)
      {
          p.Close();
      }

      private void bw_ProgressChanged(object sender, ProgressChangedEventArgs e)
      {
      }

      private void bw_DoWork(object sender, DoWorkEventArgs e)
      {
          Dispatcher.BeginInvoke(new Action(() =>
          {
              p.Show();
              ViewTabelsData();
          }));
      }

But It Do not work Correctly.

When Button View first clicked CircularProgressBar just for few seconds shown (that more less than it must shown)and then disappear.when button view for second time pressed I get this Exception: System.InvalidOperationException "Cannot set Visibility or call Show, ShowDialog, or WindowInteropHelper.EnsureHandle after a Window has closed."


Where is my Bug?What the best way I do it?
Tags: C# (C# 4.0), SQL, .NET, WPF

Plain Text
ASM
ASP
ASP.NET
BASIC
BAT
C#
C++
COBOL
CoffeeScript
CSS
Dart
dbase
F#
FORTRAN
HTML
Java
Javascript
Kotlin
Lua
MIDL
MSIL
ObjectiveC
Pascal
PERL
PHP
PowerShell
Python
Razor
Ruby
Scala
Shell
SLN
SQL
Swift
T4
Terminal
TypeScript
VB
VBScript
XML
YAML

Preview



When answering a question please:
  1. Read the question carefully.
  2. Understand that English isn't everyone's first language so be lenient of bad spelling and grammar.
  3. If a question is poorly phrased then either ask for clarification, ignore it, or edit the question and fix the problem. Insults are not welcome.
  4. Don't tell someone to read the manual. Chances are they have and don't get it. Provide an answer or move on to the next question.
Let's work to help developers, not make them feel stupid.
Please note that all posts will be submitted under the http://www.codeproject.com/info/cpol10.aspx.



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900