Answers for "tkinter remove label border"

1

tkinter label border

l1 = Label(root, text="This", borderwidth=2, relief="groove")
Posted by: Guest on October-27-2020
2

tkinter remove window border

from tkinter import *
#MAKE SURE TO PIP INSTALL TKINTER IN THE TERMINAL!
root = Tk()

#root.iconbitmap(r'C:UsersMoonPicturesPythonMyIcon.png') #if we use this command the picture will move diagonally every run and then reset.
root.geometry("200x250")
#This is the size of the screen

img = PhotoImage(file=r'C:UsersMoonPicturesPythonMyPicture.png')
#Replace the directory with your picture's directory 

Label(root,image=img).pack()

root.overrideredirect(True)
root.mainloop()
Posted by: Guest on October-19-2021

Python Answers by Framework

Browse Popular Code Answers by Language