[Tutor] Multiple tabs using tkinter
Alan Gauld
alan.gauld at yahoo.co.uk
Tue Feb 7 05:23:23 EST 2017
On 07/02/17 03:56, Pooja Bhalode wrote:
> you mentioned that there are multiple toolkits which can be used instead of
> tkinter. I was also looking into wxpython for building a explorer bar.
> Mainly, I have to build a software entirely using python and thus, needed
> all these things put in place. I have been exploring things on how to do
> small bits of these using Tkinter. Would you suggest me to use some other
> toolkit instead of tkinter or maybe combine and use whichever whenever
> needed?
You can do it all in Tkinter if you want, it just takes more work. You
will need to create your own widgets. Other toolkits (like wxPython)
come with more powerful widgets already built, but the trade off is that
they are
1) not part of standard python which means you (and your users)
need to install them
2) They are usually more difficult(*) to use than Tkinter
(and will require more OOP knowlege than you currently have)
(*)But thats a relative thing, they are not very
difficult, just different. And once you get into them they
are much easier to use than creating your own widgets!
But there are no perfect toolkits, you need to look at
each and judge which one is best for you.
There is a page here that lists most of the options:
https://wiki.python.org/moin/GuiProgramming
--
Alan G
Author of the Learn to Program web site
http://www.alan-g.me.uk/
http://www.amazon.com/author/alan_gauld
Follow my photo-blog on Flickr at:
http://www.flickr.com/photos/alangauldphotos
More information about the Tutor
mailing list