Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 732
siva82kb Avatar asked Dec 04 '22 09:12

siva82kb


1 Answers

Try

frame.SetTitle('yourtitle')
like image 195
mhenke Avatar answered Dec 07 '22 00:12

mhenke