For my WPF application, I am storing several user settings like window position, window state, and whether or not to display a welcome dialog. The problem is that while eve
There are functions , BeginInit and EndInit, if you change properties inside these functions like..
BeginInit(); ... ... // Do your code Initialization here... ... EndInit();
then your window will not render until the EndInit() is called, it will not flicker.