字体形状窗体-qt5很基础很详细的教程

时间:2024-07-02 23:13:43
【文件属性】:

文件名称:字体形状窗体-qt5很基础很详细的教程

文件大小:2.83MB

文件格式:PDF

更新时间:2024-07-02 23:13:43

qt5,c++

1.8字体形状窗体 1、实例需求 将窗体背景色透明,根据图片形状显示窗体。 2、实例参照 • 光盘/QtCode/QtTwo/Qt07/ Qt07.pro 3、实例实现 将透明图片文字拷贝到项目中,前面已经讲述过怎么添加资源文件,这里就不在赘述 了。 添加图片之后,打开MainWindow.cpp 文件编写如下代码。 //去掉标题栏 this->setWindowFlags(Qt::FramelessWindowHint); //设置背景透明 this->setAttribute(Qt::WA_TranslucentBackground, true); //窗体添加样式,样式为CSS样式表 // background-image:url 添加图片 // background-repeat:no-repeat 不平铺 this->setStyleSheet("background-image:url(:/new/prefix1/touming);background- repeat:no-repeat;"); 25


网友评论