C++ 中CListCtrl的每個項都顯示不同的提示信息
創(chuàng)新互聯(lián)-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價比臨朐網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式臨朐網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋臨朐地區(qū)。費用合理售后完善,十載實體公司更值得信賴。
添加CToolTipCtrl成員變量m_toolTipCtrl,CListCtrl成員變量m_ListUser,CImageList成員變量m_imageList(這個可以不要)
在OnInitDialog()函數(shù)里加下面代碼
m_BoradcastEnd.EnableWindow(FALSE); m_imageList.Create(32, 32, ILC_COLOR8, 2, 2); DWORD dwStyle = m_ListUser.GetExtendedStyle(); dwStyle |= LVS_EX_INFOTIP; m_ListUser.SetExtendedStyle(dwStyle); for (int i=0; i<5; i++) { CBitmap bit; bit.LoadBitmap(IDB_TEA_ONLINE+i); m_imageList.Add(&bit, RGB(0, 0, 0)); bit.DeleteObject(); } EnableToolTips(TRUE); m_toolTipCtrl.Create(this); m_toolTipCtrl.SetMaxTipWidth(500);//若屏蔽這行提示信息的格式可能會出現(xiàn)問題,不能換行 m_toolTipCtrl.Activate(TRUE); m_ListUser.SetImageList(&m_imageList, TVSIL_NORMAL); m_ListUser.InsertItem(0, "172.16.30.32.231", 0); m_ListUser.InsertItem(1, "172.16.30.218", 4); CRect rect; m_ListUser.GetItemRect(0, &rect, LVIR_BOUNDS); m_toolTipCtrl.AddTool(&m_ListUser, "MAC:/nHost:/nIP:", &rect, 1); m_ListUser.GetItemRect(1, &rect, LVIR_BOUNDS); m_toolTipCtrl.AddTool(&m_ListUser, "gggggggggg/nggggggggsfgsfgsfg", &rect, 2);
添加虛函數(shù)PreTranslateMessage()
在函數(shù)里添加下面代碼
BOOL CMutiScreenDlg::PreTranslateMessage(MSG* pMsg) { // TODO: Add your specialized code here and/or call the base class m_toolTipCtrl.RelayEvent(pMsg); return CDialog::PreTranslateMessage(pMsg); }
如有疑問請留言或者到本站社區(qū)交流討論,希望通過本文能幫助到大家,謝謝大家對本站的支持!
網(wǎng)站名稱:C++中CListCtrl的每個項都顯示不同的提示信息
標題網(wǎng)址:http://www.rwnh.cn/article36/jgpisg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供軟件開發(fā)、品牌網(wǎng)站設(shè)計、網(wǎng)站導(dǎo)航、建站公司、ChatGPT、定制網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)