Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

set icon title tkinter

# my problme was that, i didnt know that the image format must be .ico
# you can convert your images in https://convertico.com/ and then:

from tkinter import *

root = Tk()
root.title('this is program title')
# icon
root.iconbitmap('image_name.ico')

root.mainloop()
Comment

PREVIOUS NEXT
Code Example
Python :: installing wxpython on windows 10 
Python :: get video width and height cv2 
Python :: python divide string in half 
Python :: python datetime add minutes 
Python :: how will you print space and stay on the same line in python 
Python :: sleep in py 
Python :: install aws sdk ubuntu 20.04 command line 
Python :: print two digits after decimal python 
Python :: f-string ponto decimal python 
Python :: pd.set_option show all rows 
Python :: difference python list and numpy array 
Python :: pandas new column with loc 
Python :: django how to set a navbar active 
Python :: learn python the hard way pdf 
Python :: python deep copy of a dictionary 
Python :: pandas drop rows with null in specific column 
Python :: python conda how to see channels command 
Python :: column string to datetime python 
Python :: python RuntimeWarning: overflow encountered in long_scalars 
Python :: pip neat 
Python :: import numpy Illegal instruction (core dumped) 
Python :: how to take list of float as input in python 
Python :: printable characters python 
Python :: python open file exception 
Python :: how to sum the revenue from every day in a dataframe python 
Python :: python numpy array check if all nans 
Python :: python hour from date 
Python :: upgrade python to 3.8 
Python :: simplify fractions python 
Python :: python get command line arguments 
ADD CONTENT
Topic
Content
Source link
Name
2+9 =