Answers for "make button in tk"

2

create button tkinter

import tkinter as tk #We will use tkinter

font = 'Helvetica' #This is the font that we will use

def cmd(): #This is the command for our button
  label = tk.Label(master,text="Hi to everyone",font=(font,16)) #We'll create
  																#a label
  label.grid(row=1,column=0,sticky='w') #This is the 'grid'

class main: #Our main class
  def __init__(self,master):
    master.title('Simple Interface') #The title of our interface
    master.geometry('500x500+0+0') #Position and Size of master
    button = tk.Button(master,text='Ok',command=cmd) #Creating the button
    button.grid(row=0,column=0,sticky='w') #Grid of the button

if __name__ == '__main__':
  master = tk.Tk() #Now we're creating the window
  main = main(master)
  master.mainloop #Mainloop of master (the window)
Posted by: Guest on July-26-2021
1

button tkinter

import Tkinter
import tkMessageBox

top = Tkinter.Tk()

def helloCallBack():
   tkMessageBox.showinfo( "Hello Python", "Hello World")

B = Tkinter.Button(top, text ="Hello", command = helloCallBack)

B.pack()
top.mainloop()
Posted by: Guest on May-30-2020
0

make button in tk

from tkinter import*
Window = Tk()
Posted by: Guest on October-27-2021
0

make button in tk

from tkinter import*
Window = Tk()
def YourCommand():
  print ("Button Clicked")
button = Button(Window, text="Click Me", command=YourCommand)
Posted by: Guest on October-27-2021

Python Answers by Framework

Browse Popular Code Answers by Language