加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
mainwindow.h 925 Bytes
一键复制 编辑 原始数据 按行查看 历史
清风暖酒 提交于 2023-08-12 23:50 . studentManage 第一次提交
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include<QString>
#include <QMainWindow>
#include<QSqlDatabase>
#include<QKeyEvent>
#include<view_mysql.h>
QT_BEGIN_NAMESPACE
namespace Ui { class MainWindow; }
QT_END_NAMESPACE
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
MainWindow(QWidget *parent = nullptr);
~MainWindow();
QString sqlComand;
QSqlDatabase db;
//新页面
view_Mysql vm;
private slots:
void on_btn_register_clicked();
void on_btn_login_clicked();
void keyPressEvent(QKeyEvent *event);//重写键盘事件
private:
Ui::MainWindow *ui;
//数据库信息
const QString hostname="127.0.0.1";
const int port=3306;//mysql默认端口
const QString user="root";
const QString password="123456";
const QString databaseName="studentmanage";
QString table_login="login";
QString table_student="student";
};
#endif // MAINWINDOW_H
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化