0

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.

BlackHat
  • 1
  • 4

1 Answers1

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