mirror of
https://github.com/norohind/EDMC_SpanshRouter.git
synced 2025-04-25 13:02:17 +03:00
9 lines
268 B
Python
9 lines
268 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)
|
|
PlaceHolder.__init__(self, placeholder) |