0
votes
With what kind of IDE (if any) you build python GUI projects?
For wxPython I use xrced to make GUI definitions contained in xml files, I find this way …
2
votes
Double buffering with wxpython
There is a hight probability that the SetDoubleBuffered actually makes your panel use a buffered dc automatically, the documentation doesn't mention that those classes are deprecated (and I rather …
0
votes
Showing data in a GUI where the data comes from an outside source
Here is the way I would do it (on windows):
import wx, wx.lib.newevent, threading
import win32event, win32pipe, win32file, pywintypes, winerror
NewMessage, EVT_NEW_MESSAGE = wx.li …
1
vote
Nice IDE for wxPython or Tkinter GUI Development
I use xrced (comes with wxPython). The GUI is defined in xml files, you have an autogenerated python file that automates some initialization then you subclass those autogenerated classes and do the …
1
vote
wxPython: A foldable panel widget
Here is one way using wx.SplitterWindow
import wx, wx.calendar
class FoldableWindowContainer(wx.Panel):
def __init__(self, parent, left, right):
wx.Panel.__init__(self …
0
votes
wx.StaticBitmap or wx.DC: Which is better to use for constantly changing images?
You don't have to delete the StaticBitmap, you can just set another bitmap to it using it's SetBitmap method.
If the new image has different dimensions you will pr …
