Answers for "how to change the cursor in tkinter"

2

how to change the color of the cursor in tkinter

tkinter.Text(tk.Tk(), insertbackground="#3C3F41")
Posted by: Guest on July-31-2020
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 "how to change the cursor in tkinter"

Python Answers by Framework

Browse Popular Code Answers by Language