customcombobox.h 354 B

1234567891011121314151617181920
  1. #ifndef CUSTOMCOMBOBOX_H
  2. #define CUSTOMCOMBOBOX_H
  3. #include <QComboBox>
  4. #include <QMouseEvent>
  5. class CustomComboBox : public QComboBox
  6. {
  7. public:
  8. explicit CustomComboBox(QWidget *parent = nullptr);
  9. ~CustomComboBox();
  10. //重写下拉框弹出位置
  11. void showPopup() override;
  12. private:
  13. int m_nMargin;
  14. };
  15. #endif // CUSTOMCOMBOBOX_H