Tkinter Bitmaps
Tkinter Bitmaps
com
Advertisements
This attribute to displays a bitmap. There are following type of bitmaps available −
• "error"
• "gray75"
• "gray50"
• "gray25"
• "gray12"
• "hourglass"
• "info"
• "questhead"
• "question"
• "warning"
Example
# !/usr/bin/python3
from tkinter import *
import tkinter
top = Tk()
B1.pack()
B2.pack()
B3.pack()
B4.pack()
B5.pack()
top.mainloop()
Result
When the above code is executed, it produces the following result −