isabel
0
Q:

tkinter python

from Tkinter import *

root = Tk()

w = Label(root, text="Hello Tkinter!")
w.pack()

root.mainloop()
1
# check this code first.
from tkinter import *

app = Tk()
# The title of the project
app.title("The title of the project")
# The size of the window
app.geometry("400x400")

# Defining a funtion
def c():
    # Label
    m = Label(app, text="Text")
    m.pack()


# Button
l = Button(app, text="The text of the Butoon", command=c)
# Packing the Button
l.pack()
app.mainloop()
# Quick Note : 
# When you put a command you should not use parentheses
# l = Button(app, text="The text of the Butoon", command=c)
# l = Button(app, text="The text of the Butoon", command=c())



# Ranuga
# Thank you.....
16
import tkinter as tk
root = tk.Tk()
root.title("my title")
root.geometry('200x150')
root.configure(background='black')

#	enter widgets here

root.mainloop()
5
# Python 3.x
import tkinter
top = tkinter.Tk()
# Code to add widgets will go here...
top.mainloop()

# I recommend creating each tkinter window as a child class to a frame.
# This keeps all methods related to the window encapsulated, and makes
# your code alot more understandable and readable :)
2
from tkinter import *
1
Make your event handler a lambda function, which calls your command() - in this case get_dir()
- with whatever arguments you want:

xbBrowse = Button(frameN, text="Browse...", font=fontReg, command=lambda : self.get_dir(xbPath))
2
import tkinter as tk

obj = tk.Tk() # Creates a tkinter object
label = tk.Label(obj, text="This is a text button")
4
#How to import tkinter module in python
#-------------------------------------------------------------------------------
#Importing the tkinter module
from tkinter import *
#This tells python that a module is being imported in python ; normally importing is like import ___, but in this case, tkinter needs to be imported as "from tkinter import *"
#-------------------------------------------------------------------------------
-1
import tkinter
master = tkinter.Tk()
master.mainloop()
1

New to Communities?

Join the community