Я пытаюсь использовать процедуру проверки из ответа здесь: Интерактивная проверка содержимого виджета ввода в tkinter
Я хочу изменить цвет фона, проверив тип ввода.К сожалению, я не могу передать указатель на вход в функцию проверки: vcmd = (self.register(self.onValidate), '%d', '%i', '%P', '%s', '%S', '%v', '%V', '%W')
.Таким образом, я попробовал это:
self.entry = tk.Entry(self, validate="all")
self.entry['validatecommand'] = self.onValidate2(self.entry)
Но это работает только один раз.Не могли бы вы объяснить, как лучше всего получить доступ к объекту, из которого вызывается функция проверки (или другая), и почему мое использование validatecommand
работает только один раз?
Вот полный код изПриведенная выше ссылка с некоторыми исправлениями:
import tkinter as tk # python 3.x
# import Tkinter as tk # python 2.x
class Example(tk.Frame):
def __init__(self, parent):
tk.Frame.__init__(self, parent)
# valid percent substitutions (from the Tk entry man page)
# note: you only have to register the ones you need; this
# example registers them all for illustrative purposes
#
# %d = Type of action (1=insert, 0=delete, -1 for others)
# %i = index of char string to be inserted/deleted, or -1
# %P = value of the entry if the edit is allowed
# %s = value of entry prior to editing
# %S = the text string being inserted or deleted, if any
# %v = the type of validation that is currently set
# %V = the type of validation that triggered the callback
# (key, focusin, focusout, forced)
# %W = the tk name of the widget
vcmd = (self.register(self.onValidate),
'%d', '%i', '%P', '%s', '%S', '%v', '%V', '%W')
# self.entry = tk.Entry(self, validate="key", validatecommand=vcmd)
self.entry = tk.Entry(self, validate="all")
# self.entry['validatecommand'] = vcmd
self.entry['validatecommand'] = self.onValidate2(self.entry)
self.text = tk.Text(self, height=10, width=40)
self.entry.pack(side="top", fill="x")
self.text.pack(side="bottom", fill="both", expand=True)
def onValidate(self, d, i, P, s, S, v, V, W):
self.text.delete("1.0", "end")
self.text.insert("end","OnValidate:\n")
self.text.insert("end","d='%s'\n" % d)
self.text.insert("end","i='%s'\n" % i)
self.text.insert("end","P='%s'\n" % P)
self.text.insert("end","s='%s'\n" % s)
self.text.insert("end","S='%s'\n" % S)
self.text.insert("end","v='%s'\n" % v)
self.text.insert("end","V='%s'\n" % V)
self.text.insert("end","W='%s'\n" % W)
self.text.insert("end","W='%s'\n" % W)
W.config({"background": "Red"})
# Disallow anything but lowercase letters
if S == S.lower():
return True
else:
self.bell()
return False
def onValidate2(self, entry):
try:
entry.config({"background": "White"})
value = int(entry.get())
print("Int Value=",value)
# return int(value)
except ValueError:
entry.config({"background": "Red"})
if __name__ == "__main__":
root = tk.Tk()
Example(root).pack(fill="both", expand=True)
root.mainloop()