// ----------------------------------------------------------------------- // // Copyright 2015 MIT Licence. See licence.md for more information. // // ----------------------------------------------------------------------- namespace Perspex.VisualTree { /// /// Interface for controls that are at the root of a hosted visual tree, such as popups. /// public interface IHostedVisualTreeRoot { /// /// Gets the visual tree host. /// /// /// The visual tree host. /// IVisual Host { get; } } }