QCombobox无法setCurrentText

使用QComboBox如果要设置编辑框数据,需要注意以下2点:

1、如果本身已经将QComboBox设置为可编辑状态,可以直接使用setCurrentText来设置编辑框中的内容,即setEditable与setCurrentText配合使用:

pComboBox->setEditable(true);//setCurrentText需要配合setEditable使用,否则setCurrentText将会失败
pComboBox->setCurrentText(strData);

2、如果将编辑框设置为不可编辑状态,只能使用setCurrentIndex来设置框中的内容,即使先将编辑框设置为编辑状态,再设置内容,再将编辑框设置为不可编辑状态 这样也是不可以的;所以如果编辑框状态最终是不可编辑的状态,就只能使用setCurrentIndex来设置编辑框中的内容。

即:

pComboBox->setCurrentIndex(pComboBox->findText(strData));

你可能感兴趣的:(windows)