+ 4
python GUI Builder
is it possible to make gui s for py2 and 3 using a gui Builder?
7 Réponses
+ 1
there is the well-known cross platform wxpython ... and it's gui builder is wxGlade but to be clear I failed to use these two ... because I have to build every package .. but I'm trying ...
+ 2
use Tkinter
+ 2
I know tkinter but I want to know if there is a gui Builder in python (like C++ Builder for C/Cpp
+ 2
Maybe this might help
https://www.google.com/url?q=http://page.sourceforge.net/&sa=U&ved=0ahUKEwiMqbLwju7bAhUEhiwKHcypBB4QFggUMAM&usg=AOvVaw2o4gHDjzhXJ1yJcuAP8wx_
I don't rly know.... But it might help what you're aiming at.
+ 2
thanks!
+ 1
Thanks
+ 1
Use Tkinter
Example:
=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=
from tkinter import *
root = Tk()
root.geometry("600x600")
btn = Button(root, text="Click Me")
btn.pack(anchor=NW, padx=10, pady=10)
root.mainloop()
=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=
Try It in IDLE for Python3