其他分享
首页 > 其他分享> > MFC+Duilib 学习及总结 Combo

MFC+Duilib 学习及总结 Combo

作者:互联网

 

XML

<Combo name="XCom" font="0" itemfont="0" height = "25" width = "170" tooltip="请点击这里选择您准备使用的串口"
normalimage="file='login\Combo_nor.bmp' corner='2,2,24,2'"
hotimage="file='login\Combo_over.bmp' corner='2,2,24,2'"
pushedimage="file='login\Combo_over.bmp' corner='2,2,24,2'" textpadding="1,1,1,1" >

</Combo>

font="0"                       组合框内的字体大小

itemfont="0"               下拉列表显示的字体大小

name="XCom"          长度不尽可能短

C++

CComboUI *m_pxComob = static_cast<CComboUI*>(m_pm.FindControl(_T("XCom")));

if (m_pxComob != NULL)
{
::AfxMessageBox(_T("加载 OK m_pxComob"));
int con= m_pxComob->GetCount();
m_str.Format(_T("Countcon=%d"),con);
::AfxMessageBox(m_str);
con = m_pxComob->GetCurSel();

m_str.Format(_T("GetCurSelcon=%d"), con);
::AfxMessageBox(m_str);

m_str= m_pxComob->GetItemAt(con)->GetText();
::AfxMessageBox(m_str);

}

 

标签:Duilib,MFC,file,AfxMessageBox,str,Combo,pxComob,con
来源: https://www.cnblogs.com/faibg/p/15862215.html