完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
单文档界面的拆分,怎么做呢?
下面就总结一下。 文件不能太大,不能上传 https://yunpan.cn/c6AeRbk7nBUE7 访问密码 2290 首先在CMainFrame头文件里添加
|
|
相关推荐
|
|
重载OnCreateClient()函数
BOOL CMainFrame::OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext) { // TODO: Add your specialized code here and/or call the base class if (!m_cEventView.CreateStatic (this, 2, 1))//分割成上下两个 { TRACE (_T(" CMainWnd::OnCreateClient () -> CreateStatic () failedn")); return (FALSE); } if (!m_cDataView.CreateStatic (&m_cEventView, 1, 2))//在上面分割的基础上,分成2个 { TRACE (_T("CMainWnd::OnCreateClient () -> CreateStatic () failedn")); return (FALSE); } RECT rc; GetClientRect (&rc); // Create "view" in top left pane: if (!m_cDataView.CreateView ( 0, 0, RUNTIME_CLASS (CItemView), CSize (rc.right / 2, 3 * rc.bottom / 4), pContext)) { ASSERT (FALSE); return (FALSE); } if (!m_cDataView.CreateView ( 0, 1, RUNTIME_CLASS (CItemView), CSize (rc.right / 2, 3 * rc.bottom / 4), pContext)) { ASSERT (FALSE); return (FALSE); } if (!m_cEventView.CreateView ( 1, 0, RUNTIME_CLASS (CItemView),//CItemView是创建的基于CListView的类 CSize (rc.right, rc.bottom / 4), pContext)) { ASSERT (FALSE); return (FALSE); } return true;//这句一定要加 //return CFrameWnd::OnCreateClient(lpcs, pContext);//这里注意 } |
|
|
|
|
|
源文件里
BOOL CItemView::Create(LPCTSTR lpszClassName, LPCTSTR lpszWindowName, DWORD dwStyle, const RECT& rect, CWnd* pParentWnd, UINT nID, CCreateContext* pContext) { // TODO: Add your specialized code here and/or call the base class if (!CWnd::Create (lpszClassName, lpszWindowName, dwStyle, rect, pParentWnd, nID, pContext)) return (FALSE);//这句一定要添加,不然GetListCtrl ()无法使用。 m_cImageList.Create (IDB_ITEMIMAGES, 14, 2, RGB (255, 0, 255)); m_cImageList.SetBkColor (CLR_NONE); GetListCtrl ().SetImageList (&m_cImageList, LVSIL_SMALL); CListCtrl& listCtrl = GetListCtrl(); //listCtrl.SetImageList(&m_cImageList,LVSIL_NORMAL); //listCtrl.SetImageList(&m_ImageListSmall,LVSIL_SMALL); LV_COLUMN listCol; wchar_t* const arCols[6] = {_T("序号"),_T("姓名"),_T("学号"),_T("成绩1"),_T("成绩2"),_T("成绩3")}; listCol.mask = LVCF_FMT|LVCF_WIDTH|LVCF_TEXT|LVCF_SUBITEM; // 添加表头 for(int nCol=0;nCol<6;nCol++) { listCol.iSubItem = nCol; listCol.pszText = arCols[nCol]; listCol.fmt = LVCFMT_LEFT; listCtrl.InsertColumn(nCol,&listCol); } int nIndex,nItem; CString strDisplay; for(nItem=0;nItem<12;nItem++) { strDisplay.Format(_T("%d"),nItem); nIndex = listCtrl.InsertItem(nItem,strDisplay); listCtrl.SetItemText(nIndex,1,_T("张三")); listCtrl.SetItemText(nIndex,2,_T("D301")); listCtrl.SetItemText(nIndex,3,_T("0")); listCtrl.SetItemText(nIndex,4,_T("D3115")); listCtrl.SetItemText(nIndex,5,_T("0")); } LONG lStyle; lStyle = GetWindowLong(listCtrl.m_hWnd, GWL_STYLE);//获取当前窗口style lStyle &= ~LVS_TYPEMASK; //清除显示方式位 lStyle |= LVS_REPORT; //设置style设置为报表方式 SetWindowLong(listCtrl.m_hWnd, GWL_STYLE, lStyle);//设置style listCtrl.SetExtendedStyle(LVS_EX_FULLROWSELECT|LVS_EX_GRIDLINES); listCtrl.SetColumnWidth(0,LVSCW_AUTOSIZE); listCtrl.SetColumnWidth(1,100); listCtrl.SetColumnWidth(2,100); listCtrl.SetColumnWidth(3,100); listCtrl.SetColumnWidth(4,100); listCtrl.SetColumnWidth(5,100); return (TRUE);//这句必须有 //return CListView::Create(lpszClassName, lpszWindowName, dwStyle, rect, pParentWnd, nID, pContext); } |
|
|
|
|
|
嵌入式学习-飞凌嵌入式ElfBoard ELF 1板卡-LCD显示图片编程示例之介绍mmap
72 浏览 0 评论
《DNESP32S3使用指南-IDF版_V1.6》第二章 常用的C语言知识点
509 浏览 0 评论
【RA-Eco-RA2E1-48PIN-V1.0开发板试用】(第三篇)ADC采集+PWM输出
546 浏览 0 评论
《DNK210使用指南 -CanMV版 V1.0》第四十五章 人脸识别实验
545 浏览 0 评论
1008 浏览 0 评论
【youyeetoo X1 windows 开发板体验】少儿AI智能STEAM积木平台
11763 浏览 31 评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-11-22 15:18 , Processed in 1.015281 second(s), Total 86, Slave 68 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号