38 lines
1.1 KiB
C++
38 lines
1.1 KiB
C++
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// 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
|