mirror of
https://gitee.com/js-yhsec/energy_storage.git
synced 2026-05-27 18:59:26 +08:00
搭建PVB架构,实现前端的基础布局、菜单、表格、图示等功能
This commit is contained in:
@@ -114,10 +114,10 @@ void QUI::combox(QComboBox& comb, QWidget* parent, int x, int y, int w, int h, s
|
||||
}
|
||||
}
|
||||
|
||||
void QUI::lineedit(QLineEdit& line, QWidget* parent, int x, int y, int w, int h)
|
||||
void QUI::lineedit(QLineEdit& lineEdit, QWidget* parent, int x, int y, int w, int h)
|
||||
{
|
||||
line.setParent(parent);
|
||||
line.setGeometry(x, y, w, h);
|
||||
lineEdit.setParent(parent);
|
||||
lineEdit.setGeometry(x, y, w, h);
|
||||
}
|
||||
|
||||
void QUI::setBackground(QWidget* w, std::string name, QColor color, std::string border)
|
||||
|
||||
Reference in New Issue
Block a user