#ifndef BACKGROUNDDELEGATE_H #define BACKGROUNDDELEGATE_H // 在头文件中声明 #include class BackgroundDelegate : public QStyledItemDelegate { public: explicit BackgroundDelegate(QObject *parent = nullptr); void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const override; }; #endif // BACKGROUNDDELEGATE_H