Top "Qt-designer" questions

Qt Designer is Qt's tool for designing and building graphical user interfaces (GUIs) from Qt components.

How to change the caption of a button in a QDialogButtonBox?

I have added a QDialogButtonBox button with the default Cancel and OK buttons. Is there a way to change the …

qt pyqt qt-designer
pyQt5 change MainWindow Flags

I use python 3.4 , pyQt5 and Qt designer (Winpython distribution). I like the idea of making guis by designer and importing …

python pyqt5 qt-designer flags qmainwindow
Qt: add a file selection field on the form (QLineEdit and "browse" button)

I need to display QLineEdit with "Browse" button at my form. When user clicks button, QFileDialog should be opened, and …

c++ qt qt-designer qtgui qfiledialog
How can I add item data to QComboBox from Qt Designer/.ui file

I'm using Qt Designer (well, Qt Creator actually, but specifically the part derived from Qt Designer), and I've added a …

qt designer qt-designer qcombobox
File dialog not working with PyQt5?

This is my first time attempting to create a GUI. I have created a simple program with a button that …

python pyqt pyqt5 qt-designer qfiledialog
Select text of QLineEdit on focus

I have created a dialog using QtDesigner. There is a QLineEdit object in the dialog with some default content. When …

qt qt-designer qlineedit
Qt designer: How to add widget to a layout in the designer when the layout appears infinitely thin?

I am using Qt Designer, and I would like to move a couple of top-level widgets into a horizontal layout. …

qt user-interface layout drag-and-drop qt-designer
PyInstaller + UI Files - FileNotFoundError: [Errno 2] No such file or directory:

I'm trying to export my .py script to .exe using PyInstaller, which has dependencies on .ui files which were created …

python pyqt4 pyinstaller qt-designer
pyqt: how to put a border frame around a widget

I'm making some changes to an existing PyQt project. The UI was created with Qt Designer. The relevant part is …

python pyqt qt-designer qframe
Replacing the existing MainWindow with a new window with Python, PyQt, Qt Designer

I'm new to Python GUI programming I'm have trouble making a GUI app. I have a main window with only …

python pyqt qt-designer