思维导图
文章来源:https://www.toymoban.com/news/detail-831963.html
作业:窗口的一些操作的实现
#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()
{
}
文章来源地址https://www.toymoban.com/news/detail-831963.html
到了这里,关于嵌入式学习-C++Day7&&QT Day1的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!