// ----------------------------------------------------------------------- // // Copyright 2014 MIT Licence. See licence.md for more information. // // ----------------------------------------------------------------------- namespace Perspex.Controls { using System; using System.Collections.Generic; public interface ITemplatedControl { IEnumerable VisualChildren { get; } /// /// Gets an observable for a . /// /// /// The property to get the observable for. /// The observable. IObservable GetObservable(PerspexProperty property); } }