I need to make my spinctrl selected when I click on it. That is basically what happens when we double-click on it, but this time with just one click. I couldnt do this task with spinctrl. So, I decided to get over this issue by using txtctrl+spinbutton composite. And I found the sample code for it:
class CustomSpin(wx.Panel):
def __init__(self, parent):
wx.Panel.__init__(self, parent, -1)
wx.StaticText(self, -1, "This example uses the wx.SpinButton control.", (45, 15))
self.text = wx.TextCtrl(self, -1, "1", (30, 50), (60, -1))
h = self.text.GetSize().height
w = self.text.GetSize().width + self.text.GetPosition().x + 2
self.spin = wx.SpinButton(self, -1,
(w, 50),
(h*2/3, h),
wx.SP_VERTICAL)
self.spin.SetRange(1, 100)
self.spin.SetValue(1)
self.Bind(wx.EVT_SPIN, self.OnSpin, self.spin)
def OnSpin(self, event):
self.text.SetValue(str(event.GetPosition()))
When I use this class as an object in my main frame, it produces spinctrl perfectly. Now how can I select all the data inside the textctrl by clicking once on it (or focusing)?
Thanks in advance.