qt之一个登陆dialog界面

本文介绍如何在Qt环境中设计并实现一个登录对话框,包括使用Qt Designer布局界面,设置部件关联,定义信号和槽,以及编写相关响应函数。
摘要由CSDN通过智能技术生成

在Qt design下,先设计下界面

分别把伙伴关系、信号/槽关系、响应函数设计出来:

           

接下来编写代码:

//dialog.h
#ifndef DIALOG_H
#define DIALOG_H

#include <QtWidgets/QMainWindow>
#include "ui_dialog.h"
#include <QMessageBox>

class Dialog : public QMainWindow
{
	Q_OBJECT

private slots:
	void enableLoginButton( const QString &);
	void login();

public:
	Dialog(QWidget *parent = 0);
	~Dialog();

private:
	Ui::DialogClass ui;
	
};

#endif // DIALOG_H


//dialog.cpp
#include "dialog.h"


Dialog::Dialog(QWidget *parent)
	: QMainWindow(parent)
{
	ui.setupUi(this);
	
	

}

Dialog::~Dialog()
{

}

void Dialog::enableLoginButton(const QString & text)
{
	ui.loginButton->setEnabled(!text.isEmpty());
}

void Dialog::login()
{
	QString userName = ui.userNamerLEdit->
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值