// ----------------------------------------------------------------------- // // Copyright 2014 MIT Licence. See licence.md for more information. // // ----------------------------------------------------------------------- namespace Perspex.Controls.Primitives { public class HeaderedItemsControl : ItemsControl { public static readonly PerspexProperty HeaderProperty = HeaderedContentControl.HeaderProperty.AddOwner(); public object Header { get { return this.GetValue(HeaderProperty); } set { this.SetValue(HeaderProperty, value); } } } }