码迷,mamicode.com
首页 >  
搜索关键字:qwidget    ( 603个结果
QT:标签显示图片隐藏方法
在设计ui过程中,中途需要显示图片,采用在标签中映射图片的方法。 显示方法是: 在继承于QWidget的部件的构建函数中申请动态空间创建一个QLabel子部件, 1 resultLabel = new QLabel(this); // 父部件是当前类 在该类的paintEvent(QPaintEve ...
分类:其他好文   时间:2020-07-17 13:50:43    阅读次数:90
Qt之图片
widget.h: #ifndef WIDGET_H #define WIDGET_H #include<QPaintEvent> #include <QWidget> #include<QPixmap> #include<QImage> class Widget : public QWidget ...
分类:其他好文   时间:2020-07-12 18:45:29    阅读次数:61
QT之鼠标事件
Widget.h: #ifndef WIDGET_H #define WIDGET_H #include<QWidget> #include<QMouseEvent> class Widget : public QWidget { Q_OBJECT public: Widget(QWidget *p ...
分类:其他好文   时间:2020-07-09 01:18:01    阅读次数:91
Qt之QFontDialog
widget.h: #ifndef WIDGET_H #define WIDGET_H #include <QWidget> class Widget : public QWidget { Q_OBJECT public slots: void showFontDialog(); public: W ...
分类:其他好文   时间:2020-07-08 13:36:54    阅读次数:62
QOpenGLWidget 揭秘
QOpenGLWidget 揭秘 From QWidget to QOpenGLWidget xxxGL() Functions How to render? QWidget Review QOpenGLWidget ApplicationQOpenGLWidget Exploration Simp ...
分类:其他好文   时间:2020-07-05 21:34:03    阅读次数:119
QtCursor::setPos设置光标位置的方法
我们可以通过QtCursor::setPos全局方法来进行鼠标位置的设置 以下的代码演示将光标移动到控件的左上角上。先将0,0点转换到桌面坐标 //QWidget* pWidget;QPoint pt(0,0);QPoint center = pWidget->mapToGlobal(pt);QCu ...
分类:其他好文   时间:2020-06-29 22:52:30    阅读次数:227
pyqt5-拖拽
文件拖拽: import sys from PyQt5.QtWidgets import QApplication, QWidget, QLabel,QPushButton,QLineEdit,QFileDialog class DropLineEdit(QLineEdit): #重写QLineEd ...
分类:其他好文   时间:2020-06-27 00:18:47    阅读次数:63
C++ 友元:在一个类中,访问另一个类中的数据。
Widget.h class Overview_Dialog;//Widget的友元类 class Widget : public QWidget { Q_OBJECT public: friend class Overview_Dialog; explicit Widget(QWidget *pa ...
分类:编程语言   时间:2020-06-26 21:49:21    阅读次数:93
中给窗口增加蒙层
需求介绍:在Qt应用程序中点击某按钮弹窗时希望主窗口能有一层透明的蒙版。实现方式在当前窗口的UI设计函数(例如QCurrentWindow::SetupWindowLayout())中加入:QWidget* m_pMaskLayer = nullptr;(写入头文件) m_pMaskLayer = ...
分类:其他好文   时间:2020-06-24 18:01:02    阅读次数:54
QWidget::repaint: Recursive repaint detected
原因分析: Ah, ok. I thought it was commented out because it caused the error. You can always put a breakpoint in the line printing the error and look at t ...
分类:其他好文   时间:2020-06-23 21:48:50    阅读次数:84
603条   上一页 1 2 3 4 5 ... 61 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!