+ 2
Python UI builder
If you've ever used Blend for Visual Studio, you would know how easy it is to build UI(disclaimer: i don't know if it works with other languages other than c#) Is there such thing for python or do i manually have to create each button and put it in place by changing some code? If there is, does it work with any IDE or is it itself a IDE? I don't really want to change my IDE just for UI building.
3 Answers
+ 11
For Python3's Tkinter module, you use
import tkinter
and/or
from tkinter import *
For Python2's Tkinter module, you use
import Tkinter
and/or
from Tkinter import *
+ 2
in python use import tkinter for ui
0
i found this, it's used to more easily generate tkinter code for ui building.
http://page.sourceforge.net/
I also found PyQt5, it acts kind of like PAGE.
i don't really know if ui building is that important at the stage that i am at, i think i should firstly learn the basics before jumping into ui building