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組合框的使用方法,根據具體需求還可以使用其他方法進行更高級的操作。