// -----------------------------------------------------------------------
//
// Copyright 2015 MIT Licence. See licence.md for more information.
//
// -----------------------------------------------------------------------
namespace Perspex.VisualTree
{
///
/// Interface for controls that host their own separate visual tree, such as popups.
///
public interface IVisualTreeHost
{
///
/// Gets the root of the hosted visual tree.
///
///
/// The root of the hosted visual tree.
///
IVisual Root { get; }
}
}