摘要:
代码来自 http://blog.sina.com.cn/s/blog_a6fb6cc90101az3h.htmlQt实现类似QQ的登录失败的提示框,主要涉及窗口透明并添加关闭按钮,以及图标和信息的显示等。直接上代码:#ifndef ERRORWIDGET_H#define ERRORWIDGET_H#include #include class ErrorWidget : public QWidget{ Q_OBJECTpublic: ErrorWidget(QWidget *parent = 0); ~ErrorWidget(); void setTipInfo(Q... 阅读全文
摘要:
转载---》http://blog.sina.com.cn/s/blog_a6fb6cc90101artk.html在做用户登录界面的时候,往往会用到密码框,则其中的一些功能也要求与普通的输入框不同,包括不能全选、复制、粘贴、无右键菜单等、设置密码不可见等功能!#include "pwd_line_edit.h"PwdLineEdit::PwdLineEdit(QWidget *parent) :QLineEdit(parent){//设置无右键菜单this->setContextMenuPolicy(Qt::NoContextMenu);//设置密码提示this-& 阅读全文
摘要:
1.效果如下图,开启就自动检测系统语言,选择系统语言显示,UI有控件设置,在中文和英文之间切换。。2. 源码dialog.h#ifndef DIALOG_H#define DIALOG_H#include #include class Dialog : public QDialog{ Q_OBJECT public: Dialog(QWidget *parent = 0); ~Dialog(); void translateLanguage();private: QLabel *label1; QLabel *label2; QComboBox ... 阅读全文