xmake.repo/packages/n/noesis/latest/Include/NsGui/Label.h
2024-12-22 19:15:02 +08:00

33 lines
922 B
C++

////////////////////////////////////////////////////////////////////////////////////////////////////
// NoesisGUI - http://www.noesisengine.com
// Copyright (c) 2013 Noesis Technologies S.L. All Rights Reserved.
////////////////////////////////////////////////////////////////////////////////////////////////////
#ifndef __GUI_LABEL_H__
#define __GUI_LABEL_H__
#include <NsCore/Noesis.h>
#include <NsGui/CoreApi.h>
#include <NsGui/ContentControl.h>
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