用qtcreator 6.0用代码如何在Qscrollarea里再添加一个Qscrollarea
时间: 2023-09-28 14:13:34 浏览: 117
您可以使用以下代码在Qt Creator 6.0中向QScrollArea中添加另一个QScrollArea:
```cpp
#include <QtWidgets>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
// 创建主窗口
QMainWindow mainWindow;
QWidget* centralWidget = new QWidget(&mainWindow);
QVBoxLayout* mainLayout = new QVBoxLayout(centralWidget);
// 创建第一个QScrollArea
QScrollArea* scrollArea1 = new QScrollArea(&mainWindow);
QWidget* scrollContent1 = new QWidget(scrollArea1);
QVBoxLayout* scrollLayout1 = new QVBoxLayout(scrollContent1);
// 添加内容到第一个QScrollArea
QLabel* label1 = new QLabel("Content 1");
scrollLayout1->addWidget(label1);
// 设置第一个QScrollArea的滚动内容
scrollContent1->setLayout(scrollLayout1);
scrollArea1->setWidget(scrollContent1);
// 创建第二个QScrollArea
QScrollArea* scrollArea2 = new QScrollArea(&mainWindow);
QWidget* scrollContent2 = new QWidget(scrollArea2);
QVBoxLayout* scrollLayout2 = new QVBoxLayout(scrollContent2);
// 添加内容到第二个QScrollArea
QLabel* label2 = new QLabel("Content 2");
scrollLayout2->addWidget(label2);
// 设置第二个QScrollArea的滚动内容
scrollContent2->setLayout(scrollLayout2);
scrollArea2->setWidget(scrollContent2);
// 添加两个QScrollArea到主布局
mainLayout->addWidget(scrollArea1);
mainLayout->addWidget(scrollArea2);
centralWidget->setLayout(mainLayout);
mainWindow.setCentralWidget(centralWidget);
mainWindow.show();
return app.exec();
}
```
这段代码创建了一个主窗口,并在其中添加了两个QScrollArea。每个QScrollArea都包含一个QLabel作为滚动内容。您可以根据需要修改和扩展这个示例。记得在Qt Creator 6.0中构建和运行该项目。
阅读全文