本文整理汇总了Python中tkinter.Entry.__init__方法的典型用法代码示例。如果您正苦于以下问题:Python Entry.__init__方法的具体用法?Python Entry.__init__怎么用?Python Entry.__init__使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类tkinter.Entry
的用法示例。
在下文中一共展示了Entry.__init__方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: from tkinter import Entry [as 别名]
# 或者: from tkinter.Entry import __init__ [as 别名]
def __init__(self, *args, **kwargs):
Entry.__init__(self, width=100, *args, **kwargs)
self.focus_set()
self.pack()
self.var = self["textvariable"]
if self.var == '':
self.var = self["textvariable"] = StringVar()
self.var.trace('w', self.changed)
self.bind("<Right>", self.selection)
self.bind("<Up>", self.up)
self.bind("<Down>", self.down)
self.bind("<Return>", self.enter)
self.lb_up = False
self.lb = None
示例2: __init__
# 需要导入模块: from tkinter import Entry [as 别名]
# 或者: from tkinter.Entry import __init__ [as 别名]
def __init__(self, master, **kw):
self.strVar = StringVar()
vcmd = (master.register(self.isValid),
'%d', '%i', '%P', '%s', '%S', '%v', '%V', '%W')
Entry.__init__(self, master, textvariable=self.strVar,
validate='key', validatecommand=vcmd, **kw)
示例3: __init__
# 需要导入模块: from tkinter import Entry [as 别名]
# 或者: from tkinter.Entry import __init__ [as 别名]
def __init__( self, parent, type, type_class, **kw):
Entry.__init__( self, parent, kw)
self.arrow = None
self.type_class = type_class # is one of ("internal", "reference")
self.type = type
示例4: __init__
# 需要导入模块: from tkinter import Entry [as 别名]
# 或者: from tkinter.Entry import __init__ [as 别名]
def __init__(self,parent,**config):
Entry.__init__(self,parent,**config)
self.parent = parent
self.displayed_picture = False
self.bind("<Button-3>", lambda event : self.ask_name())
self.bind("<KeyRelease>", lambda event : self.config(bg="white"))
示例5: __init__
# 需要导入模块: from tkinter import Entry [as 别名]
# 或者: from tkinter.Entry import __init__ [as 别名]
def __init__(self, master=None):
Entry.__init__(self, master)
self._value = StringVar()
self['textvariable'] = self._value
self._value.trace('w', self._valuechanged)
self.model = TextHolderModel(view=self)