mirror of
https://github.com/norohind/EDMC_SpanshRouter.git
synced 2025-04-29 15:01:34 +03:00
10 lines
322 B
Python
10 lines
322 B
Python
#!/usr/bin/env python2
|
|
|
|
from Tkinter import *
|
|
from PlaceHolder import PlaceHolder
|
|
|
|
class PlaceHolderEntry(Entry, PlaceHolder):
|
|
def __init__(self, parent, placeholder, **kw):
|
|
Entry.__init__(self, parent, **kw)
|
|
self.var = self["textvariable"] = StringVar()
|
|
PlaceHolder.__init__(self, placeholder) |