This has to be the simplest question of all, but I cannot seem to figure it out. I have the progress bar in place. How do I make it show progress? How do I start the thing?<
Don't set it to IsIndeterminate during the initialisation (i.e. UI designer in XAML, or the constructor on the code side) of the window that owns it. If you do then the animation will not start. Set it within the 'Loaded' event handler.
I would have IsIndeterminate = 'False'
on the XAML side, and then in the Window_Loaded
event, set:
myProgressBar.IsIndeterminate = true;