Reputation: 1922
I have an application where I need to add text to the title of a frame depending on the user's interaction.
Is there a way to change the title of a frame in wxPython after it has been created?
Upvotes: 5
Views: 5904
Reputation: 246
Try
frame.SetTitle('yourtitle')
Upvotes: 19