I try to reach a specific wx StaticText element's text and to change
it by clicking on a button
now let's say the this is my element:
wx.StaticText(p anel, 15, "Hello" ,(30, 70) , style=wx.ALIGN_ CENTRE)
And this is my EVT_BUTTON bind function :
def OnClick(event):
which code shude i enter to change "hello" to "goodbay"?
thanks
it by clicking on a button
now let's say the this is my element:
wx.StaticText(p anel, 15, "Hello" ,(30, 70) , style=wx.ALIGN_ CENTRE)
And this is my EVT_BUTTON bind function :
def OnClick(event):
which code shude i enter to change "hello" to "goodbay"?
thanks
Comment