// ----------------------------------------------------------------------- // // Copyright 2015 MIT Licence. See licence.md for more information. // // ----------------------------------------------------------------------- namespace Perspex.Controls { /// /// Base class for and . /// public class DefinitionBase : PerspexObject { /// /// Defines the property. /// public static readonly PerspexProperty SharedSizeGroupProperty = PerspexProperty.Register(nameof(SharedSizeGroup), inherits: true); /// /// Gets or sets the name of the shared size group of the column or row. /// public string SharedSizeGroup { get { return this.GetValue(SharedSizeGroupProperty); } set { this.SetValue(SharedSizeGroupProperty, value); } } } }