Answers for "python tkinter change cursor size"

0

python tkinter cursor types

from Tkinter import *
import Tkinter

top = Tkinter.Tk()

B1 = Tkinter.Button(top, text ="circle", relief=RAISED,
                         cursor="circle")
B2 = Tkinter.Button(top, text ="plus", relief=RAISED,
                         cursor="plus")
B1.pack()
B2.pack()
top.mainloop()
Posted by: Guest on January-03-2021

Code answers related to "python tkinter change cursor size"

Python Answers by Framework

Browse Popular Code Answers by Language