当前位置: 首页>>代码示例>>Python>>正文


Python Entry.__init__方法代码示例

本文整理汇总了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
开发者ID:timvieira,项目名称:skid,代码行数:19,代码来源:tkautocomplete.py

示例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)
开发者ID:lirenzhucn,项目名称:PACT_code_v2,代码行数:8,代码来源:TkCommonDialog.py

示例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
开发者ID:sctincman,项目名称:bkchem,代码行数:7,代码来源:external_data.py

示例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"))
开发者ID:Yangsilu,项目名称:database,代码行数:8,代码来源:entryaskopen.py

示例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)
开发者ID:daleathan,项目名称:guiskel,代码行数:8,代码来源:mainwindow.py


注:本文中的tkinter.Entry.__init__方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。