EDMC_SpanshRouter/PlaceHolderEntry.py
2019-07-17 01:00:44 +02:00

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)