0
我想在用戶調整主窗口大小時自動調整上述圖片的大小,大小如下所示。
有沒有什麼功能可以在pyqt4
中做到這一點?
我正在尋找的答案,這個問題...但我無法找到相關的東西。
我試圖設置固定的最小尺寸,但這不起作用。
如何在pyqt4
(python)中自動調整窗口大小?
圖片是在qtdesigner。
我想在用戶調整主窗口大小時自動調整上述圖片的大小,大小如下所示。
有沒有什麼功能可以在pyqt4
中做到這一點?
我正在尋找的答案,這個問題...但我無法找到相關的東西。
我試圖設置固定的最小尺寸,但這不起作用。
如何在pyqt4
(python)中自動調整窗口大小?
圖片是在qtdesigner。
如果你使用的是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.
謝謝!我解決了它 – Somputer