// ----------------------------------------------------------------------- // // Copyright 2014 MIT Licence. See licence.md for more information. // // ----------------------------------------------------------------------- namespace Perspex.Controls { using Perspex.Controls.Primitives; public class ContentControl : TemplatedControl { public static readonly PerspexProperty ContentProperty = PerspexProperty.Register("Content"); public object Content { get { return this.GetValue(ContentProperty); } set { this.SetValue(ContentProperty, value); } } } }