python - How to implement a toolstrip to my GUI? -


i creating simple application manage unknown words when learning new language. application written in python , using tkinter build gui.

gui

as can see, done - need toolstrip several buttons on it, seems there no toolstrip widget in tkinter. how can overcome issue?

there no toolstrip widget when comes tkinter.

you have 3 options:

1) if want continue building application using tkinter, create frame @ top of gui , add buttons it, act alternative toolstrip.

2) can design own widget using tcl, lot of effort beginner.

3) can start scratch switching pyqt has qtoolbar , qmenubar (depending on whether want icons or text buttons in toolstrip).


Comments

Popular posts from this blog

c# - Update a combobox from a presenter (MVP) -

How to understand 2 main() functions after using uftrace to profile the C++ program? -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -