我需要从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有什么区别?哪个更好,为什么?