Hi I would like to know the methods in which dockable pane sizes in MFC can be persisted over sessions? Like the class to use or documentation relating to that will be helpful.
Asked
Active
Viewed 226 times
1 Answers
0
By default, MFC Feature Pack based application automatically saves the current states of windows, ribbons, menus and toolbars to the registry when application exits, and loads them at startup. This is implemented in SaveState()
and LoadState()
methods of CWinAppEx
class.

Andrew Komiagin
- 6,446
- 1
- 13
- 23
-
Read MSDN documentation. – Andrew Komiagin Oct 24 '15 at 07:54
-
can even the sizes of individual docking pane be saved ? – BlackHat Oct 24 '15 at 16:03
-
Yes it does save the size and location of each individual docking bar/pane. – Andrew Komiagin Oct 24 '15 at 18:39