gpt4 book ai didi

layout - pyuic4 生成错误的布局?

转载 作者:行者123 更新时间:2023-12-01 23:40:59 27 4
gpt4 key购买 nike

pyuic4 似乎基于 Qt Designer 中的 .ui 文件生成了错误的布局。用户界面文件在这里:

<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>Dialog</class>
<widget class="QDialog" name="Dialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>348</width>
<height>267</height>
</rect>
</property>
<property name="windowTitle">
<string>Dialog</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout_2">
<item>
<layout class="QVBoxLayout" name="verticalLayout">
<item alignment="Qt::AlignTop">
<widget class="QLabel" name="label">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="maximumSize">
<size>
<width>16777215</width>
<height>25</height>
</size>
</property>
<property name="text">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:14pt;&quot;&gt;Some Text&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
</widget>
</item>
<item alignment="Qt::AlignTop">
<widget class="Line" name="line_2">
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
</widget>
</item>
<item alignment="Qt::AlignBottom">
<widget class="Line" name="line">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
</widget>
</item>
<item>
<layout class="QHBoxLayout" name="horizontalLayout">
<item alignment="Qt::AlignBottom">
<widget class="QPushButton" name="btn_customize">
<property name="text">
<string>Customize</string>
</property>
</widget>
</item>
<item alignment="Qt::AlignBottom">
<widget class="QPushButton" name="btn_done">
<property name="text">
<string>OK</string>
</property>
</widget>
</item>
</layout>
</item>
</layout>
</item>
</layout>
</widget>
<resources/>
<connections/>
</ui>

在此布局中,我试图将一对按钮与对话框窗口的底部对齐,并将一些文本与顶部对齐。运行 pyuic4 test.ui --preview 显示所有对象水平对齐到中心,而不是顶部和底部(并从实际的 python 程序显示此对话框显示相同的结果)。相比之下,pyuic5 test.ui --preview 似乎更符合我想要得到的内容。

如果有帮助,我的 pyuic4 版本是 4.11.4,我在 Ubuntu 16.04 上。

有什么想法吗?难道我做错了什么?或者那里可能有更新的 pyuic4?

最佳答案

pyuic 中存在影响布局对齐处理的错误。这已在 2015 年 7 月 17 日发布的 PyQt-5.5 中修复。但是,PyQt-4.11.4(当前版本)于 2015 年 6 月 11 日发布 - 因此尚未包含修复程序。不过,PyQt-4.12 的当前开发快照确实包含修复。

但我认为这不会真正解决您遇到的问题。您需要做的是使用膨胀垫片。以下是使用您的示例 ui 文件执行此操作的方法:

  1. 单击水平按钮布局,然后单击 Break Layout(这将删除所有当前布局)。
  2. Ctrl+单击这两个按钮,然后单击“水平布局”。
  3. 单击“对话框”,然后单击“垂直布局”。
  4. 在两个 Line 小部件之间拖放一个 Vertical Spacer

给你这个:

screenshot

如果您希望在中心区域有一些其他小部件,您可能需要在它们上方和/或下方添加扩展的垂直分隔符以获得相同的结果。再一次,如果你在那里放一个文本框或列表小部件之类的东西,它应该自动扩展以填充可用空间 - 在这种情况下,不需要任何间隔符(或布局对齐)。

关于layout - pyuic4 生成错误的布局?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40198710/

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