siva82kb
siva82kb

Reputation: 1922

Changing the title of a frame in wxPython

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

Answers (1)

mhenke
mhenke

Reputation: 246

Try

frame.SetTitle('yourtitle')

Upvotes: 19

Related Questions