我在其中制作了一个文本编辑器我制作了一个状态栏但是一个问题我不知道如何获取像记事本这样的光标位置详细信息
请帮我
这是你要找的吗?
import tkinter
master = tkinter.Tk()
labelframe = tkinter.LabelFrame( master, labelanchor = 's' )
labelframe.grid( row=0, column= 0, sticky = 'nsew' )
text = tkinter.Text( labelframe, width = 80, height= 24 )
text.grid( row=0, column= 0, sticky = 'nsew' )
def rowcol( ev = None ):
r, c = text.index( 'insert' ).split( '.' )
labelframe[ 'text' ] = f'{r} | {c}'
text.event_add( '<<REACT>>', *( '<Motion>', '<ButtonRelease>', '<KeyPress>', '<KeyRelease>' ) )
b = text.bind( '<<REACT>>', rowcol )
rowcol( ) # get the ball rolling
text.focus()
master.mainloop()