// -----------------------------------------------------------------------
//
// Copyright 2015 MIT Licence. See licence.md for more information.
//
// -----------------------------------------------------------------------
namespace Perspex.Controls
{
///
/// Defines an interface through which a 's logical parent can be set.
///
///
/// You should not usually need to use this interface - it is for advanced scenarios only.
///
public interface ISetLogicalParent
{
///
/// Sets the control's parent.
///
/// The parent.
void SetParent(IControl parent);
}
}