// ----------------------------------------------------------------------- // // Copyright 2014 MIT Licence. See licence.md for more information. // // ----------------------------------------------------------------------- namespace Perspex.Controls { public class TreeViewItem : HeaderedItemsControl { public static readonly PerspexProperty IsExpandedProperty = PerspexProperty.Register("IsExpanded"); public bool IsExpanded { get { return this.GetValue(IsExpandedProperty); } set { this.SetValue(IsExpandedProperty, value); } } } }