2015-05-06 49 views
0

enter image description here如何在pyqt4 python中自動調整大小?

我想在用戶調整主窗口大小時自動調整上述圖片的大小,大小如下所示。

有沒有什麼功能可以在pyqt4中做到這一點?

enter image description here

我正在尋找的答案,這個問題...但我無法找到相關的東西。

我試圖設置固定的最小尺寸,但這不起作用。

如何在pyqt4(python)中自動調整窗口大小?

圖片是在qtdesigner。

回答

2

如果你使用的是QtDesigner,那麼它很容易。看一看佈局像vertical layout, horizontal layout 按照步驟:

1. Add layout to your main window. 
2. Right click main window and click 'layout vertically' as you want button below 
    the text area 
3. Then add(drag-n-drop) your text area inside vertical area. 
4. Add button and what not.... 
5. Have a look at 'http://doc.qt.io/qt-4.8/designer-layouts.html' google for  
    properties of layout like alignment of element. size, orientation. 
+0

謝謝!我解決了它 – Somputer