#include "widget.h"
#include "ui_widget.h"
Widget::Widget(QWidget *parent)
: QWidget(parent)
, ui(new Ui::Widget)
,Gcancle(new QPushButton("取消",this))
,EmmEdit(new QLineEdit(this))
{
ui->setupUi(this);
ui->ALogo->setPixmap(QPixmap("://pic//th.jpg"));
ui->ALogo->setScaledContents((true));
ui->Bzhanghao->setPixmap(QPixmap(":/pic/wodepeizhenshi.png"));
ui->Bzhanghao->setScaledContents((true));
ui->Cmima->setPixmap(QPixmap("://pic//passwd.jpg"));
ui->Cmima->setScaledContents((true));
Gcancle->resize(ui->Flogin->width(),ui->Flogin->height());
Gcancle->move(ui->Flogin->x()+ui->Flogin->width()+15,ui->Flogin->y());
connect(Gcancle,SIGNAL(clicked()),this,SLOT(my_slot1()));
this->EmmEdit->resize(ui->DzhEdit->width(),ui->DzhEdit->height());
this->EmmEdit->move(ui->DzhEdit->x(),ui->DzhEdit->y()+ui->DzhEdit->height()+12);
connect(this->EmmEdit,SIGNAL(clicked()),this,SLOT(my_slot2()));
this->EmmEdit->setEchoMode(QLineEdit::Password);
}
Widget::~Widget()
{
delete ui;
}
void Widget::my_slot1()
{
this->close();
}
void Widget::my_slot2()
{
QString zh = ui->DzhEdit->text();
QString mm = this->EmmEdit->text();
if(zh == "admin" && mm == "123456")
{
QMessageBox::information(this, "登录", "登陆成功");
this->close();
}else
{
QMessageBox::warning(this, "登录", "登录失败");
ui->DzhEdit->clear();
this->EmmEdit->clear();
}
}
QT
m0_703701182024-06-20 0:10
相关推荐
古希腊掌管学习的神29 分钟前
[LeetCode-Python版]相向双指针——611. 有效三角形的个数赵钰老师30 分钟前
【R语言遥感技术】“R+遥感”的水环境综合评价方法就爱学编程38 分钟前
重生之我在异世界学编程之C语言小项目:通讯录Oneforlove_twoforjob1 小时前
【Java基础面试题025】什么是Java的Integer缓存池?emoji1111111 小时前
前端对页面数据进行缓存每天都要学信号1 小时前
Python(第一天)TENET信条1 小时前
day53 第十一章:图论part04生信圆桌1 小时前
【生信圆桌x教程系列】如何安装 seurat V5版本R包,最详细安装手册IT猿手1 小时前
最新高性能多目标优化算法:多目标麋鹿优化算法(MOEHO)求解TP1-TP10及工程应用---盘式制动器设计,提供完整MATLAB代码单片机学习之路2 小时前
【C语言】结构