// ----------------------------------------------------------------------- // // Copyright 2014 MIT Licence. See licence.md for more information. // // ----------------------------------------------------------------------- namespace Perspex.Controls.Presenters { using Perspex.Controls.Primitives; /// /// Interface for presenters such as and /// . /// /// /// A presenter is the gateway between a templated control and its content. When /// a control which implements is found in the template /// of a then that signals that the visual child /// of the presenter is not a part of the template. /// public interface IPresenter : IVisual, INamed { } }