pyuic4似乎基于Qt Designer的.ui文件生成了错误的布局。 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><html><head/><body><p align="center"><span style=" font-size:14pt;">Some Text</span></p></body></html></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?
答案 0 :(得分:3)
pyuic中存在影响布局中对齐处理的错误。这是在2015年7月17日发布的PyQt-5.5中修复的。但是,PyQt-4.11.4(当前版本)于2015年6月11日发布 - 所以修复程序尚未包括在内。不过,PyQt-4.12的当前开发快照确实包含了修复程序。
但我不认为这会真正解决你的问题。你需要做的是使用扩展垫片。以下是使用示例ui文件的方法:
给你这个:
如果您想在中心区域设置其他小部件,则可能需要在它们上方和/或下方添加扩展垂直间隔符以获得相同的结果。然后,如果你在那里放置类似文本框或列表小部件的东西,它应该自动扩展以填充可用空间 - 在这种情况下,不需要任何间隔物(或布局对齐)