Qt에서는 방법 을 사용하여 selected text
a QComboBox
를
얻을 수 있습니다 combobox->currentText()
. 어떻게 얻을 수 selected value
있습니까?
나는 도움을 찾았지만 내가 찾길 currentData()
기대했던 방법 을 찾을 수 없었다 . 나는 단지 찾을 수 있었다combobox->currentIndex()
다른 방법으로 더 똑똑한 방법이 combobox->itemData(combobox->currentIndex())
있습니까?
업데이트 : Qt 5부터는 더 이상 필요하지 않습니다. http://doc.qt.io/qt-5/qcombobox.html#currentData-propcurrentData()
메소드가 추가되었습니다.