When I load the Docking Layout from File, especially the first time the app runs, the panels spend a lot of time jumping around the screen before the load actually finishes. This is very disconcerting and not very professional looking. Is there a way to lock the screen / disable redrawing while the Load in ongoing? I have tried SendMessage(Handle,wm_SetRedraw,0,0); //Lock
DockManager.LoadFromFile(fname);
SendMessage(Handle,wm_SetRedraw,1,0); //Unlock
but that does not seem to have any effect.
Comments