dialog

PySide application crashes when setting a new widget to QScrollArea

PySide application crashes when setting a new widget to QScrollArea Question: This is a simplification of an application I wrote. The application’s main window has a button and a checkbox. The checkbox resides inside a QScrollArea (via a widget). The checkbox has a number stating how many times that checkbox was created. Clicking on the …

Total answers: 1

How to use wxPython.Choice in a wxPython.Dialog?

How to use wxPython.Choice in a wxPython.Dialog? Question: I am trying to visualize an image in a dialog, and a droplist besides it to show some options. Here is my code (everything is within a class that defined by me): “”” Create main App “”” self._app = wx.App() “”” Load image “”” png = wx.Image(‘show_work.png’, …

Total answers: 1

Correct way to implement a custom popup tkinter dialog box

Correct way to implement a custom popup tkinter dialog box Question: I just started learning how to create a custom pop up dialog box; and as it turns out, the tkinter messagebox is really easy to use, but it also does not do too much. Here is my attempt to create a dialog box that …

Total answers: 7

Choosing a file in Python with simple Dialog

Choosing a file in Python with simple Dialog Question: I would like to get file path as input in my Python console application. Currently I can only ask for full path as an input in the console. Is there a way to trigger a simple user interface where users can select file instead of typing …

Total answers: 11