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.
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
Post a Comment