如何在 tkinter 文本框中获取光标位置详细信息

How to get cursor position details in tkinter Textbox

我在里面做了一个文本编辑器我做了一个状态栏但是我不知道如何像记事本一样获取光标位置详细信息

请帮帮我

这是您要找的吗?

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()