Hi, ALL,
How do I increase the default height of the wx.CheckListBox?
Create another class just for that purpose seems a little odd.
Is there an alternative?
Thank you.
Hi, ALL,
How do I increase the default height of the wx.CheckListBox?
Create another class just for that purpose seems a little odd.
Is there an alternative?
Thank you.
Hi, ALL,
How do I increase the default height of the wx.CheckListBox?
Create another class just for that purpose seems a little odd.
Is there an alternative?
Thank you.
Create your widget first with whatever initial size you want.
Ex…
myCLB = wx.CheckListBox(parent, id=-1, Point pos=wx.DefaultPosition, size=(100, 300))
Then you can manually change it’s size with…
Ex:
myCLB.SetSize(wx.Size(200, 400))
Or… If it is in a sizer, just make the proportion=1 or more and set the flags to wx.EXPAND | wx.ALL should work.
On Saturday, November 30, 2013 5:02:37 PM UTC-6, Igor Korot wrote:
mySizer.Add(myCLB, 1, wx.EXPAND | wx.ALL, 0)