I have Two WPF window Window1.xaml and window2.xaml.
In window2.xaml.cs i have one function which does some complex calculation and display intermediate resuls on a TextBlock.
Now What i want.
by clicking on button of Window1.xaml i want to open Window2.xaml as a dialog box and want to execute complex function of windows2.xaml.
If i call complex button on Window2.xaml’ load event then dilog box apear after execution of complex function.
How to do this by Threading.
You need not open the window in a thread. Once you’ve opened Window2, start a thread for the complex function in the
Window2.Loadedevent handler. This will leave your UI undisturbed.