//////////////////////////////////////////////////////////////////////////////////////////////////// // NoesisGUI - http://www.noesisengine.com // Copyright (c) 2013 Noesis Technologies S.L. All Rights Reserved. //////////////////////////////////////////////////////////////////////////////////////////////////// #ifndef __GUI_LABEL_H__ #define __GUI_LABEL_H__ #include #include #include namespace Noesis { //////////////////////////////////////////////////////////////////////////////////////////////////// /// Represents the text label for a control. /// /// http://msdn.microsoft.com/en-us/library/system.windows.controls.label.aspx //////////////////////////////////////////////////////////////////////////////////////////////////// class NS_GUI_CORE_API Label: public ContentControl { NS_DECLARE_REFLECTION(Label, ContentControl) }; } #endif