QComboBox - 哪个更好用? findText或findData - Qt

时间:2018-04-20 05:51:18

标签: python pyqt

我需要从QcomboBox中选择一个项目。

index = combobox.findText("D:\Squisher\squish\SQUISH_TESTS_TRUNK_2018x_TNA8\suite_DeltaGen\tst_LookAndShadow_2\testdata\ref\SurroundingsCompleted\Backplates\coast_backplate_test.tif")
if index >= 0:
    combobox.setCurrentIndex(index)

这是我选择一个值的方式。但有时,即使Combobox中存在值,findText也会返回-1。所以我想使用findData而不是findText。 findText和findData有什么区别?哪个更好,为什么?

0 个答案:

没有答案