Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

In this Discussion

Lock screen while loading Docking Layout

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

Sign In or Register to comment.