MFC组合框使用的方法有:
CComboBox comboBox;
comboBox.AddString(_T("Item 1"));
comboBox.InsertString(1, _T("Item 2"));
int selectedIndex = comboBox.GetCurSel();
CString selectedText;
comboBox.GetLBText(selectedIndex, selectedText);
comboBox.SetCurSel(0); // 设置第一项为选中项
comboBox.DeleteString(0); // 删除第一项
comboBox.ResetContent();
这些是一些常用的MFC组合框的使用方法,根据具体需求还可以使用其他方法进行更高级的操作。