My application is written with the MFC Feature Pack (VS2012). It can switch UI localization by loading data from a resource dll. But the CMFCMenuBar
menu restores the original text of menu items when the application is reloaded.
If I use GetDockingManager()->DisableRestoreDockState(TRUE);
, it blocks all layout data from being restored rather than only text data.
I know that the MFC Feature Pack serializes many of the UI elements. If possible, how can I disable text data serialization to achieve this?