加粗文本项目和可选图标的组合框。
介绍 这是对基本MFC组合框的简单扩展。 使用 在对话框中创建一个组合框,将其设置为“owner draw fixed”和“has strings”。 然后只需为该组合的对话框添加一个成员,类型为CComboBoxBold。 然后使用CComboBoxBold的如下功能::SetIcon(int itemId,int iconId); SetItemBold(int itemId, BOOL粗体); 例如:隐藏,复制Code
BOOL CBoldComboDemoDlg::OnInitDialog() { CDialog::OnInitDialog(); // Set the icon for this dialog. The framework does this automatically // when the application's main window is not a dialog SetIcon(m_hIcon, TRUE); // Set big icon SetIcon(m_hIcon, FALSE); // Set small icon // TODO: Add extra initialization here m_combo.SetItemBold(2,TRUE); m_combo.SetItemBold(4,TRUE); m_combo.SetIcon(0,IDI_ICON2); m_combo.SetIcon(1,IDI_ICON3); m_combo.SetIcon(2,IDI_ICON4); m_combo.SetIcon(3,IDI_ICON6); m_combo.SetIcon(5,IDI_ICON2); m_combo.SetIcon(6,IDI_ICON4); return TRUE; // return TRUE unless you set the focus to a control }
历史 2003年8月6日-更新源代码和演示项目。 本文转载于:http://www.diyabc.com/frontweb/news280.html