I have a listbox,

How can I change the string of current selected item of the listbox to another string?

I cant really find how to do this on Google.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Just delete selected string and insert a new one, like it is done in this example for a single-choice listbox:

import wx

class MyFrame(wx.Frame):
    def __init__(self, *args, **kwds):
        wx.Frame.__init__(self, *args, style=wx.DEFAULT_FRAME_STYLE)
        self.button = wx.Button(self, -1, "Change")
        self.Bind(wx.EVT_BUTTON, self.ButtonPress, self.button)

        self.tc = wx.TextCtrl(self, -1)
        self.lb = wx.ListBox(self, -1, choices = ('One', 'Two'))

        box = wx.BoxSizer(wx.VERTICAL)
        box.Add(self.lb, 0, wx.EXPAND, 0)
        box.Add(self.tc, 0, wx.EXPAND, 0)
        box.Add(self.button, 0, wx.ADJUST_MINSIZE, 0)
        self.SetSizer(box)
        box.Fit(self)
        self.Layout()

    def ButtonPress(self, evt):
        txt = self.tc.GetValue()
        pos = self.lb.GetSelection()
        self.lb.Delete(pos)
        self.lb.Insert(txt, pos)

if __name__ == "__main__":
    app = wx.PySimpleApp(0)
    frame = MyFrame(None, -1, "")
    frame.Show()
    app.MainLoop()

If you need multiple-selection listbox, then you should create it with style=wx.LB_MULTIPLE:

        self.lb = wx.ListBox(self, -1, choices = ('One', 'Two'), style=wx.LB_MULTIPLE)

Now you're able to change multiple strings at once:

    def ButtonPress(self, evt):
        txt = self.tc.GetValue()
        for pos in self.lb.GetSelections():
            self.lb.Delete(pos)
            self.lb.Insert(txt, pos)
link|improve this answer
+1 but if you consider using GetSelections() instead of GetSelection() you should also consider to remove all the selected items instead of removing just one and needing to use allselected[0] – joaquin Feb 12 at 8:51
@joaquin: I use only multiple-selection listboxes in my work, and I just forgot about GetSelection(). Thanks for pointing it out. – Andrey Sobolev Feb 12 at 10:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.