Fabio
Fabio

Reputation: 69

wxPython statusbar

How can I make the Statusbar show a specific text without having to hover one of the menubar's items? I want to make a MP3 player I'm building be able to output currently playing file in the statusbar.

Upvotes: 1

Views: 2077

Answers (1)

joaquin
joaquin

Reputation: 85613

Use:

self.statusbar.SetStatusText('text', field_number)

Upvotes: 4

Related Questions