Hi
I have an app which consist of three windows.
Main Window Settings Window Find Window
A dll needs to be initialized. THis is little time consuming, so i have it done via the backgroundworker. The backgroundworker is a private member of Main Window.
I need to check the status of the backgroundworker in the find window too. I can pass a reference of main window to find window and check the backgroundworker status.But is this way i have to do it. Or should i have the backgroundwroker in a seperate class(A singleton maybe) and check the status of the backgroundworker through that??
Not much experience in C# GUI programming.
Thanks