写不了一点,咕咕咕,随便写写吧,ui设计这个坑先浅填一点点(但是觉得填不上了)
上期的坑
显示密码/隐藏密码
通过cout计数判断奇偶,默认是隐藏,即偶数0
当点击这个图标时cout++,变为偶数,进入if判断进入显示密码情况
// 隐藏/显示密码(附带图标变化)
void login::on_btn_show_clicked()
{
cout++;
if(cout%2==1)
{
ui->lineEdit_password->setEchoMode(QLineEdit::Normal);
ui->btn_show->setIcon(QIcon(":/image/icon/hidePassword.png"));
}
else
{
ui->lineEdit_password->setEchoMode(QLineEdit::Password);
ui->btn_show->setIcon(QIcon(":/image/icon/showPassword.png"));
}
}
将成功登录的账号加入下拉框
在组合框中查找是否存在指定的文本,即account,若 findText(account) 的返回值等于 -1就通过addItem加入下拉框(这里是已经在登录成功的情况下)
注:如果 findText 找到了匹配的文本,则返回该文本所在的索引(0.1.2…);如果没有找到匹配的文本,则返回 -1*
参考:QT实现登录界面(利用MySQL保存数据和邮箱辅助注册)
//成功后将账户加入下拉框
if(ui->comboBox_account->findText(account) == -1)
ui->comboBox_account->addItem(account);
ui设计
ui还是得细调,这里先只写个主页侧边栏的,主要也就这个看着上档次(
这边基本上照着参考文章抄的,建议直接看,我描述不清
参考: Qt、使用QToolButton和QStackedWidget的侧边栏(SideBar)的实现与实现原理解析
弹簧是为了和页面自适应(老师要求),然后我库库放了一大堆(问就是不会其他的简单方法)
下面这个结构图我也看不懂
这里只qss样式表代码:(可能和文章一样吧)
// 4个QToolButton
/* 默认 */
QToolButton{
border-top: 3px outset transparent; /* 上边框宽度3像素、突出显示、颜色为透明 */
border-bottom: 7px outset transparent;
border-right: 3px outset transparent;
border-left: 3px outset transparent;
min-width: 80px; /* 控件最小宽度 */
min-height: 80px;
background-color: rgb(228, 228, 228);
}
/* 鼠标悬停 */
QToolButton:hover{
background-color: rgb(205, 205, 205);
}
/* 点击和按下 */
QToolButton:pressed,QToolButton:checked{
border-left: 3px outset rgb(93, 95, 97); /* 左边框宽度3像素、突出显示、颜色为深深灰 */
background-color: rgb(246, 246, 246);
}
QPushButton:default {
border-color: navy; /* make the default button prominent */
}
// 按钮下面的QWidget
QWidget{
background-color: rgb(228, 228, 228); /* 设置背景色为灰色 */
}
报错
时隔多日后打开文件运行报错了,给我整懵了,上网查了“Error while building/deploying project LabSystemLQY (kit: Desktop Qt 5.14.1 MinGW 32-bit)
When executing step “qmake””
发现是当时交作业改成学号姓名导致出现中文路径,事实证明,几个月后全忘了
先这样写吧,我已经看不懂我当时写的什么了,为了补这个文章已经去找gpt查我代码意思了
光速溜