本文整理汇总了C++中CWinApp::GetProfileIntA方法的典型用法代码示例。如果您正苦于以下问题:C++ CWinApp::GetProfileIntA方法的具体用法?C++ CWinApp::GetProfileIntA怎么用?C++ CWinApp::GetProfileIntA使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CWinApp
的用法示例。
在下文中一共展示了CWinApp::GetProfileIntA方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: OnCreate
int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
return -1;
// 프레임의 클라이언트 영역을 차지하는 뷰를 만듭니다.
if (!m_wndView.Create(NULL, NULL, AFX_WS_DEFAULT_VIEW, CRect(0, 0, 0, 0), this, AFX_IDW_PANE_FIRST, NULL))
{
TRACE0("뷰 창을 만들지 못했습니다.\n");
return -1;
}
if (!m_wndStatusBar.Create(this))
{
TRACE0("상태 표시줄을 만들지 못했습니다.\n");
return -1; // 만들지 못했습니다.
}
m_wndStatusBar.SetIndicators(indicators, sizeof(indicators)/sizeof(UINT));
//deep02 : 뷰 윈도우 위에 다른 뷰 윈도우를 생성하기.
m_wndView2.Create(TEXT("Static"),TEXT("DEMO"), WS_CHILD |WS_VISIBLE|WS_BORDER, CRect(5, 5, 100, 100), this,1);
//deep01 : 레지스트리에 저장한 윈도우 크기, 위치보관
CWinApp* pApp = (CWinApp*)AfxGetApp();
CRect rect;
GetWindowRect(rect);
rect.left = pApp->GetProfileIntA(m_Section,"left", rect.left);
rect.top = pApp->GetProfileIntA(m_Section, "top", rect.top);
rect.right = pApp->GetProfileIntA(m_Section, "right", rect.right);
rect.bottom = pApp->GetProfileIntA(m_Section, "bottom", rect.bottom);
MoveWindow(rect);
return 0;
}