MFC+Duilib 学习及总结 Combo

2022/2/3 23:46:32

本文主要是介绍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);

}

 



这篇关于MFC+Duilib 学习及总结 Combo的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程