1,在Activity的onStop()函数中隐藏Widget。 int HomeLauncher::onStop() { QWidget* pObj = mProperty->getUiObj(); if(pObj) { pObj->hide(); } return 0; } 2,在Activit ...
分类:
其他好文 时间:
2020-06-23 21:40:50
阅读次数:
62
www.qt-ui.com 原创技术文章 当我们需要处理窗口以外的全局键盘和鼠标事件的时候,我们可以通过installEventFilter在QApplication上安装事件过滤器来进行处理。 调用示例如下: UIGQtPOSLogin::UIGQtPOSLogin(QWidget *parent ...
分类:
其他好文 时间:
2020-06-21 14:18:17
阅读次数:
107
#QLabel控件使用 from PyQt5.QtWidgets import QApplication,QLabel,QWidget,QVBoxLayout from PyQt5.QtCore import Qt from PyQt5.QtGui import QPixmap,QPalette i ...
分类:
Web程序 时间:
2020-06-18 11:15:15
阅读次数:
173
PyQt 模拟时钟 AnalogClock: from PyQt5 import QtGui, QtCore from PyQt5.QtCore import Qt from PyQt5.QtGui import QIcon from PyQt5.QtWidgets import QApplicat ...
分类:
其他好文 时间:
2020-06-13 21:37:25
阅读次数:
93
//mywidget.cpp#include "mywidget.h" #include <QPushButton> MyWidget::MyWidget(QWidget *parent) : QWidget(parent) { #if 1 //创建第一个按钮 QPushButton *btn = ...
分类:
其他好文 时间:
2020-06-05 00:57:50
阅读次数:
144
代码: 1 from PyQt5.QtWidgets import QWidget, QRadioButton, QApplication, QPushButton, QMessageBox, QButtonGroup 2 import sys 3 4 class Example(QWidget): ...
分类:
其他好文 时间:
2020-06-01 00:45:42
阅读次数:
68
1、新建空白类,然后继承QWidget 此时会生成Test.h和Test.cpp两个文件,由于继承了QWidget,但是并没有绘制界面【onPaint里draw..】,所以将这个类生成的对象show一下,界面时什么都没有的 2、新建QWidget界面子类 此时会生成3个文件,Test.h、Test. ...
分类:
其他好文 时间:
2020-05-24 00:32:51
阅读次数:
91
一、案例 from PyQt5.Qt import * import sys class Window(QWidget): def __init__(self): super().__init__() self.setWindowTitle('QRadioButton-使用') self.resiz ...
分类:
其他好文 时间:
2020-05-15 15:30:15
阅读次数:
170
from PyQt5.QtWidgets import QApplication,QWidget,QProgressBar,QPushButton from PyQt5.QtCore import QBasicTimer from PyQt5.QtGui import QIcon import sy ...
分类:
编程语言 时间:
2020-05-09 20:55:56
阅读次数:
79
添加一个图片,改变图片大小,适应label Widget::Widget(QWidget *parent) : QWidget(parent) , ui(new Ui::Widget) { ui->setupUi(this); QPixmap map("C:/Users/Administrator/ ...
分类:
其他好文 时间:
2020-05-04 09:13:07
阅读次数:
86