Problem. I don't know how to access the objects inside the passed Window Object from my method.
void MyMethod(Window myWindow){
myWindow. <--- "I have an Progress bar inside this object that I believe has been passed. But don't know how to access it".
}
I can also try to use the current Application class library from System.Windows but the problem is still the same, I just don't know how to reference the objects that is inside the window.
void MyMethod(){
ProgressBar myprogressbarInsidetheApp = Application.Current.MainWindow <----- I am lost. Please help.
}