gpt4 book ai didi

c++ - 将 QScrollArea 设置为 Qt 中的中央小部件

转载 作者:行者123 更新时间:2023-11-28 00:27:54 25 4
gpt4 key购买 nike

在 Qt 中,我删除了 xml 编辑器中的中央小部件,并将其替换为 QScrollArea,当我在 QtDesigner 中预览它时,这会起作用:

enter image description here

但是当我运行程序时它看起来像这样:

enter image description here

您是不是要删除中央小部件,或者是否有我必须更改的 sizePolicy

这是用户界面文件:

 <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>MainWindow</class>
<widget class="QMainWindow" name="MainWindow">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>179</width>
<height>191</height>
</rect>
</property>
<property name="windowTitle">
<string>MainWindow</string>
</property>
<widget class="QScrollArea" name="scrollArea">
<property name="widgetResizable">
<bool>true</bool>
</property>
<widget class="QWidget" name="scrollAreaWidgetContents">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>224</width>
<height>628</height>
</rect>
</property>
<layout class="QHBoxLayout" name="horizontalLayout_2">
<item>
<widget class="QLabel" name="label">
<property name="sizePolicy">
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="font">
<font>
<pointsize>75</pointsize>
</font>
</property>
<property name="midLineWidth">
<number>2</number>
</property>
<property name="text">
<string>label

</string>
</property>
<property name="alignment">
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
</property>
</widget>
</item>
</layout>
</widget>
</widget>
<widget class="QMenuBar" name="menuBar">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>179</width>
<height>19</height>
</rect>
</property>
</widget>
<widget class="QToolBar" name="mainToolBar">
<attribute name="toolBarArea">
<enum>TopToolBarArea</enum>
</attribute>
<attribute name="toolBarBreak">
<bool>false</bool>
</attribute>
</widget>
<widget class="QStatusBar" name="statusBar"/>
</widget>
<layoutdefault spacing="6" margin="11"/>
<resources>
<include location="1.qrc"/>
</resources>
<connections/>
</ui>

最佳答案

检查您的ui_mainwindow.h。看看有没有这样一行:

MainWindow->setCentralWidget(scrollArea);

您可以使用 QMainWindow::setCentralWidget在您的 mainwindow.cpp 中设置一个中央小部件到您的主窗口的功能:

setCentralWidget(myScrollArea);

我认为没有任何方法可以从设计器更改中央小部件。

关于c++ - 将 QScrollArea 设置为 Qt 中的中央小部件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24166472/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com