Lightningbeam/PyGUI-2.5.3/GUI/Generic/GLabels.py

15 lines
285 B
Python

#
# Python GUI - Labels - Generic
#
from GUI.Properties import overridable_property
from GUI import Control
class Label(Control):
"""A piece of static text for labelling items in a window."""
_default_tab_stop = False
text = overridable_property('text')