QLabel控件基本用法'''QLabel控件setAlignment():设置文本的对齐方式setIndent():设置文本缩进text():获取文本内容setBuddy():设置伙伴关系setText():设置文本内容selectedText():返回所选择的字符setWordWrap():设置... ...
分类:
其他好文 时间:
2021-06-02 13:54:29
阅读次数:
0
方法一(只对QLabel有用)、 //label是QLabel的对象指针 ui->label->setScaledContents(true); 方法二(对两种都有用)、 QString imagepath = ":/images/btn.png"; QPixmap image0(imagepath ...
分类:
其他好文 时间:
2021-05-24 14:14:13
阅读次数:
0
代码 # -*- coding: utf-8 -*- from PyQt5 import QtCore, QtWidgets from PyQt5.QtWidgets import QFrame, QApplication, QMainWindow import sys class Ui_MainW ...
分类:
其他好文 时间:
2021-04-10 13:08:17
阅读次数:
0
QSS中 QLabel { background-color: rgba(255, 255, 224, 50%); border: 2px solid black; } 0%表示全透明,100%表示不透明 ...
分类:
其他好文 时间:
2020-09-17 17:29:08
阅读次数:
20
创建UI脚本 #ifndef AA_H #define AA_H #include <QWidget> #include <QDebug> #include <QMutex> #include <QLabel> namespace Ui { class AA; } class AA : public ...
分类:
其他好文 时间:
2020-08-06 09:20:14
阅读次数:
58
在设计ui过程中,中途需要显示图片,采用在标签中映射图片的方法。 显示方法是: 在继承于QWidget的部件的构建函数中申请动态空间创建一个QLabel子部件, 1 resultLabel = new QLabel(this); // 父部件是当前类 在该类的paintEvent(QPaintEve ...
分类:
其他好文 时间:
2020-07-17 13:50:43
阅读次数:
90
在QT中设置圆形头像,本文记录了两个解决思路。 将头像显示在QLabel 此类控件中,设置QLabel 为一个正方形,接着设置QLabel 的圆角属性,可以实现圆形头像的效果。 图像合成,在头像上方设置遮罩。 以下是实现上述两种方式的Demo 实现效果: QLabel 方式: 遮罩方式: 这里分为两 ...
分类:
其他好文 时间:
2020-07-04 21:04:16
阅读次数:
72
QPushButton: //设置位子和大小 ui->pushButton->setGeometry(QRect(QPoint(100,100),QSize(200,50))); ui->pushButton->setGeometry(100,100,50,50); int bw = ui->pus ...
分类:
其他好文 时间:
2020-06-30 00:27:19
阅读次数:
52
文件拖拽: import sys from PyQt5.QtWidgets import QApplication, QWidget, QLabel,QPushButton,QLineEdit,QFileDialog class DropLineEdit(QLineEdit): #重写QLineEd ...
分类:
其他好文 时间:
2020-06-27 00:18:47
阅读次数:
63