tkinter how to remove button boder
bd=0
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()
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us