思维导图

嵌入式学习-C++Day7&&QT Day1-LMLPHP
嵌入式学习-C++Day7&&QT Day1-LMLPHP

作业:窗口的一些操作的实现

#include "mywidget.h"

Mywidget::Mywidget(QWidget *parent)
    : QWidget(parent)
{
    this->setWindowTitle("QQ");
    this->setWindowIcon(QIcon("C:\\Users\\xuyan\\Desktop\\others\\1.jpg"));
    this->setStyleSheet("background-color:rgb(255,255,255)");
//    this->setWindowOpacity(0.3);
    this->resize(540,410);
}

Mywidget::~Mywidget()
{
}

嵌入式学习-C++Day7&&QT Day1-LMLPHP

02-21 00:19