// ----------------------------------------------------------------------- // // Copyright 2014 MIT Licence. See licence.md for more information. // // ----------------------------------------------------------------------- namespace Perspex.Controls { using Perspex.Layout; public interface IContentControl { object Content { get; set; } HorizontalAlignment HorizontalContentAlignment { get; set; } VerticalAlignment VerticalContentAlignment { get; set; } } }