int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct) { CDemoApp* pApp = (CDemoApp*)AfxGetApp(); if (CMDIFrameWnd::OnCreate(lpCreateStruct) == -1) return -1; if (!m_wndToolBar.Create(this) || !m_wndToolBar.LoadBitmap(IDR_MAINFRAME) || !m_wndToolBar.SetButtons(buttons, sizeof(buttons)/sizeof(UINT))) { TRACE("Failed to create toolbar\n"); return -1; // fail to create } if (!m_wndStatusBar.Create(this) || !m_wndStatusBar.SetIndicators(indicators, sizeof(indicators)/sizeof(UINT))) { TRACE("Failed to create status bar\n"); return -1; // fail to create } CRect rc; rc.left = pApp->GetProfileInt("MainWindow", "Left", 5); rc.top = pApp->GetProfileInt("MainWindow", "Top", 5); rc.right = pApp->GetProfileInt("MainWindow", "Right",300); rc.bottom = pApp->GetProfileInt("MainWindow", "Bottom",300); MoveWindow(rc.left, rc.top, rc.right - rc.left, rc.bottom- rc.top, TRUE); return 0; }
时间: 2024-04-19 19:26:28 浏览: 165
基于MFC实现面向对象的步行地图导航【100011976】
这段代码是在应用程序的主窗口类 `CMainFrame` 中的 `OnCreate` 函数中执行的。让我逐行解释:
- `CDemoApp* pApp = (CDemoApp*)AfxGetApp();`:获取应用程序对象的指针,以便后续使用应用程序的功能。
- `if (CMDIFrameWnd::OnCreate(lpCreateStruct) == -1)`:调用基类的 `OnCreate` 函数来创建主窗口。如果返回值为 -1,表示创建失败,函数直接返回 -1。
- `if (!m_wndToolBar.Create(this) || !m_wndToolBar.LoadBitmap(IDR_MAINFRAME) || !m_wndToolBar.SetButtons(buttons, sizeof(buttons)/sizeof(UINT)))`:创建工具栏并加载位图资源。如果工具栏创建或加载位图失败,函数返回 -1。
- `if (!m_wndStatusBar.Create(this) || !m_wndStatusBar.SetIndicators(indicators, sizeof(indicators)/sizeof(UINT)))`:创建状态栏并设置指示器。如果状态栏创建或设置指示器失败,函数返回 -1。
- `CRect rc;`:定义一个矩形变量 `rc`,用于存储主窗口的位置和大小。
- `rc.left = pApp->GetProfileInt("MainWindow", "Left", 5);`:从配置文件中读取主窗口的左边位置,默认为 5。
- `rc.top = pApp->GetProfileInt("MainWindow", "Top", 5);`:从配置文件中读取主窗口的上边位置,默认为 5。
- `rc.right = pApp->GetProfileInt("MainWindow", "Right", 300);`:从配置文件中读取主窗口的右边位置,默认为 300。
- `rc.bottom = pApp->GetProfileInt("MainWindow", "Bottom", 300);`:从配置文件中读取主窗口的下边位置,默认为 300。
- `MoveWindow(rc.left, rc.top, rc.right - rc.left, rc.bottom - rc.top, TRUE);`:将主窗口移动到指定位置和设置指定大小。
这段代码的作用是在主窗口创建时创建工具栏和状态栏,并根据配置文件中保存的位置和大小信息设置主窗口的位置和大小。
阅读全文