Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在制作一个程序,它从目录中读取文件并从所述文件中获取一些信息。我想将此信息输出到具有以下格式的 QGridLayout:
我正在考虑使用 QLabel 数组并将图像像素映射到标签。到目前为止,这种方法有效,但我不确定如何将底部的 QLabels 附加到顶部的图像上。谁能解释如何做到这一点?
将每个图像和标签放入 a 中QVBoxLayout,然后将其添加到您的QGridLayoutusing 中QGridLayout::addLayout。
QVBoxLayout
QGridLayout
QGridLayout::addLayout