I am a beginner WPF developer, and creating simple utility programs right now. I want to know if there is a simple way to send a text update to the user from within the main thread in a WPF application, and see it appear before the thread has finished?
Edit:
I specifically wanted to do this from the main thread. And without any background worker thread complexity. The comment that worked is this:
this.Title = "Some new text";
This updates immediately from the main thread. Nothing else updates whatever I tried.