imgbutton.h
来自「透明的程序界面编程,非常有用的,我自己都看过很多遍了,程序已经编译通过」· C头文件 代码 · 共 27 行
H
27 行
#ifndef ImgButton_H
#define ImgButton_H
#include <QHash>
#include <QIcon>
#include <QtGui>
//class ImgButton : public QPushButton
class ImgButton : public QLabel
{
Q_OBJECT
public:
ImgButton(QWidget *parent = 0);
void setback(QPixmap ground);
QPixmap groundPixmap;
private slots:
private:
protected:
virtual void paintEvent(QPaintEvent *);
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?