2
votes
Finding pixels per inch in wxDC
does this help? (from the manual)
wxDC::GetPPI
wxSize GetPPI() const
Returns the resolution of the device in pixels per inch.
…
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
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 …
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: …
2
votes
Wxwidget Grid
You could make your own GridTableBase that implements this, for a simple example to get you started see my answer to …
0
votes
How to create hover effect on StaticBitmap in wxpython?
It looks like this is a wxGTK bug, ENTER and LEAVE events work fine on windows. You should direct the attention of the core developers to the problem, a good place to do this is their …
