I am new to Qt Framework ...
I want to display pp pp in my Form1.ui, so I dragged the Graphics view from the widget window, then I placed test.png in the same directory (inside the project folder)
and I did it in code
#include "form1.h"
#include "ui_form1.h"
Form1::Form1(QWidget *parent) :
QWidget(parent),
ui(new Ui::Form1)
{
ui->setupUi(this);
ui->Pic1->setStyleSheet("background-image: url(test.png)");
}
Form1::~Form1()
{
delete ui;
}
#ifndef FORM1_H
#define FORM1_H
#include <QWidget>
namespace Ui {
class Form1;
}
class Form1 : public QWidget
{
Q_OBJECT
public:
explicit Form1(QWidget *parent = 0);
~Form1();
private:
Ui::Form1 *ui;
};
#endif
It compiled perfectly, but the rice didn’t appear. What am I wrong?
this is my qrc:
source
share