Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

add button to python gui file

from tkinter import *   
root = Tk()             
root.geometry('100x100')
 
# Create a Button
btn = Button(root, text = 'Click me !', bd = '5',
                          command = root.destroy)
 
# Set the position of button on the top of window.  
btn.pack(side = 'top')   
 
root.mainloop()
 
PREVIOUS NEXT
Tagged: #add #button #python #gui #file
ADD COMMENT
Topic
Name
8+2 =