xmake.repo/packages/n/noesis/latest/Include/NsGui/ItemsPanelTemplate.h

38 lines
1.1 KiB
C
Raw Normal View History

2024-12-22 19:15:02 +08:00
////////////////////////////////////////////////////////////////////////////////////////////////////
// NoesisGUI - http://www.noesisengine.com
// Copyright (c) 2013 Noesis Technologies S.L. All Rights Reserved.
////////////////////////////////////////////////////////////////////////////////////////////////////
#ifndef __GUI_ITEMSPANELTEMPLATE_H__
#define __GUI_ITEMSPANELTEMPLATE_H__
#include <NsCore/Noesis.h>
#include <NsGui/CoreApi.h>
#include <NsGui/FrameworkTemplate.h>
namespace Noesis
{
////////////////////////////////////////////////////////////////////////////////////////////////////
/// Specifies the panel that the ItemsPresenter creates for the layout of the items of an
/// ItemsControl.
///
/// http://msdn.microsoft.com/en-us/library/system.windows.controls.itemspaneltemplate.aspx
////////////////////////////////////////////////////////////////////////////////////////////////////
class NS_GUI_CORE_API ItemsPanelTemplate: public FrameworkTemplate
{
public:
ItemsPanelTemplate();
~ItemsPanelTemplate();
NS_DECLARE_REFLECTION(ItemsPanelTemplate, FrameworkTemplate)
};
}
#endif