tkinter entry 命令基于输入的字符数?
tkinter entry command based on number of characters entered?
使用 Tf.bind('<Return>', function)
的 Tkinter 键绑定将通过条目小部件中的 <Return>
(Enter) 键触发一个函数。是否有一个参数会根据输入小部件中输入的字符数触发该功能?
感谢您的想法。
Is there a parameter that will trigger the function based on the number of characters entered within the entry widget?
不,没有。您的绑定函数可以轻松检查小部件中有多少字符,并且在达到限制之前什么都不做。
使用 Tf.bind('<Return>', function)
的 Tkinter 键绑定将通过条目小部件中的 <Return>
(Enter) 键触发一个函数。是否有一个参数会根据输入小部件中输入的字符数触发该功能?
感谢您的想法。
Is there a parameter that will trigger the function based on the number of characters entered within the entry widget?
不,没有。您的绑定函数可以轻松检查小部件中有多少字符,并且在达到限制之前什么都不做。