很简单,直接反射将QComboBox的wheelEvent方法重置掉即可。

self.combo_box = QComboBox(self)
setattr(self.combo_box, "wheelEvent", lambda a: None)