예제 #1
0
파일: ChildFrm.cpp 프로젝트: skappert/mcp
void CChildFrame::OnSavesettings() 
{
	// TODO: Add your command handler code here
	CDockState dockstate;
	CFrameWnd::GetDockState(dockstate);
	dockstate.SaveState("ChildDockbars");
}
예제 #2
0
파일: MainFrm.cpp 프로젝트: DrDub/Byakhee
void CMainFrame::OnClose() 
{
	//store the toolbar positions
	CDockState dockState;
	CString szToolbarPositionsKey;
	szToolbarPositionsKey.LoadString( IDS_TOOLBARKEY );
	GetDockState( dockState );
	dockState.SaveState( szToolbarPositionsKey );
	
	CMDIFrameWnd::OnClose();
}