Widget::Widget(QWidget *parent)
: QWidget(parent), ui(new Ui::Widget)
{
ui->setupUi(this);
//QLabel *image =new QLabel("label",this);
//image->setPixmap(QPixmap(":/image/2.jpg"));
QPushButton *button =new QPushButton("button",this);
button->setStyleSheet("QPushButton#button{color: rgb(236, 10, 195);}"
"QPushButton#button:hover{background-color:rgb(255,255,255,100)}"
"QPushButton#button:hover:pressed{background-color:rgb(0,0,0,50)}");
}