2
votes
1answer
69 views
Why is wxGridSizer much slower to initialize on a wxDialog then on a wxFrame?
It seems that this is specific to windows, here is an example that reproduces the effect:
import wx
def makegrid(window):
grid = wx.GridSizer(24, 10, 1, 1)
window.SetSizer …
1
vote
wxpython - Expand list control vertically not horizontally
Use the wxLC_REPORT style.
import wx
class Test(wx.Frame):
def __init__(self):
…
1
vote
Efficient Image Thumbnail Control for Python?
In wxPython you can use wxGrid for this as it supports virtual …
1
vote
wxpython - Expand list control vertically not horizontally
Try this:
import wx
class Test(wx.Frame):
def __init__(self):
wx.Frame.__init__(self, None)
self.test = wx.ListCtrl(self, style = wx.LC_ICON | wx.LC_AUTOARRANGE …
2
votes
Alternatives to a wizard
Here is a simple example. This way you can make your "wizard" work like a finite state machine where states are different pages that are initialized on demand. Also, the data is shared between page …
2
votes
How do I safely decode a degrees symbol in a wxPython app?
pdc got it right, the following works fine (but fails without the decode):
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import wx
app = wx.PySimpleApp()
app.TopWindow …
3
votes
wxpython: Updating a dict or other appropriate data type from wx.lib.sheet.CSheet object
Use a GridTableBase
Here is a simple example:
import wx, wx.grid
class GridData(wx.gri …
2
votes
The OLE way of doing drag&drop in wxPython
Since you can't use one of the standard data formats to store references to python objects I would recommend y …
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
wxPython auinotebook.GetSelection() return index to the first page.
I ran your example and got the correct output:
0
0
1
1
2
2
I'm using the latest windows release of wxPython
…
1
vote
How can I get the width of a wx.ListCtrl and its column name?
Yes, you would have to make this yourself for wx.ListCtrl and I'm not sure it would be easy (or elegant) to do right.
Consider using a wx.Grid, here is a small example to get you going: …
0
votes
wxPython: Using EVT_IDLE
Something like this (executes at most every second):
...
def On_Idle(self, event):
if not self.queued_batch:
wx.CallLater(1000, self.Do_Batch)
self.queued_batch …
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 …
3
votes
WxPython: Cross-Platform Way to Conform Ok/Cancel Button Order
The appearance of a dialog can change only if you use stock dialogs (like wx.FileDialog), if you make your own the layout will stay the same on every platform.
wx.Dialog has a CreateStdDial …
