Search code examples
controlswxpythonwxwidgetsclickable

wxPython controls not clickable


//if I use BoxSizer instead of StaticBoxSizer, the button is clickable.
//if there is a radio button under StaticBoxSizer, it is clickable,
//but the button is not
row1 = wx.StaticBoxSizer(wx.StaticBox(panel, -1, 'this is row one'), orient=wx.HORIZONTAL)
row1.Add(label1,0,wx.TOP | wx.RIGHT,7)
row1.Add(self.fileCtrl)
row2 = wx.BoxSizer(wx.HORIZONTAL)

//for everything in row2, neither buttons nor radio buttons are clickable
actionBox = wx.StaticBoxSizer(wx.StaticBox(panel, -1, 'asdfasdf'), orient=wx.VERTICAL)

actionRow1 = wx.BoxSizer(wx.HORIZONTAL)
actionRow1.Add(wx.StaticText(panel, -1, 'blah blah ', (5, 5)))
actionRow1.Add(self.mailRadio)
actionRow2 = wx.BoxSizer(wx.HORIZONTAL)
actionRow2.Add(wx.StaticText(panel, -1, 'lah dee dah', (5, 5)))
actionRow2.Add(self.uploadRadio,5)
actionBox.Add(actionRow1,0,wx.EXPAND)
actionBox.Add(actionRow2)
row2.Add(actionBox)

wrapper = wx.FlexGridSizer(2,1,5,5)
wrapper.AddGrowableCol(0)
wrapper.Add(row1,0,wx.TOP | wx.LEFT | wx.RIGHT | wx.ALIGN_CENTER,15)
wrapper.Add(row2,0,wx.ALL | wx.ALIGN_CENTER,15)
panel.SetSizerAndFit(wrapper)
self.Centre()
self.Fit()

I'm testing this in OS X, but I need it to work on windows too. Pretty new to this so this is confusing me. Is there something like css z-index that I have to set?


Solution

  • This should work:

    import wx
    
    class MainWindow(wx.Frame):
        def __init__(self, *args, **kwargs):
            wx.Frame.__init__(self, *args, **kwargs)
    
            self.panel = wx.Panel(self)
    
            self.label1 = wx.StaticText(self.panel)
            self.fileCtrl = wx.FilePickerCtrl(self.panel)
            self.mailRadio = wx.RadioButton(self.panel)
            self.uploadRadio = wx.RadioButton(self.panel)
    
            row1 = wx.StaticBoxSizer(wx.StaticBox(self.panel, -1, 'this is row one'), orient=wx.HORIZONTAL)
            row1.Add(self.label1,0,wx.TOP | wx.RIGHT,7)
            row1.Add(self.fileCtrl)
    
            row2 = wx.BoxSizer(wx.HORIZONTAL)
            actionBox = wx.StaticBoxSizer(wx.StaticBox(self.panel, -1, 'asdfasdf'), orient=wx.VERTICAL)
            actionRow1 = wx.BoxSizer(wx.HORIZONTAL)
            actionRow1.Add(wx.StaticText(self.panel, -1, 'blah blah ', (5, 5)))
            actionRow1.Add(self.mailRadio)
            actionRow2 = wx.BoxSizer(wx.HORIZONTAL)
            actionRow2.Add(wx.StaticText(self.panel, -1, 'lah dee dah', (5, 5)))
            actionRow2.Add(self.uploadRadio,5)
            actionBox.Add(actionRow1,0,wx.EXPAND)
            actionBox.Add(actionRow2)
            row2.Add(actionBox)
    
            wrapper = wx.FlexGridSizer(2,1,5,5)
            wrapper.AddGrowableCol(0)
            wrapper.Add(row1,0,wx.TOP | wx.LEFT | wx.RIGHT | wx.ALIGN_CENTER,15)
            wrapper.Add(row2,0,wx.ALL | wx.ALIGN_CENTER,15)
            self.panel.SetSizerAndFit(wrapper)
            self.Centre()
            self.Fit()
    
            self.Show()
    
    app = wx.App(False)
    win = MainWindow(None)
    app.MainLoop()
    

    It seems that your widgets are parented in a wrong way. I got the "not-clickable" behavior when changing to this:

    ...
    self.label1 = wx.StaticText(self)
    self.fileCtrl = wx.FilePickerCtrl(self)
    self.mailRadio = wx.RadioButton(self)
    self.uploadRadio = wx.RadioButton(self)
    ...