A cross-platform UI framework for .NET
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

21 lines
616 B

using Avalonia.LogicalTree;
using Avalonia.Metadata;
namespace Avalonia.Controls
{
/// <summary>
/// Defines an interface through which a <see cref="StyledElement"/>'s logical parent can be set.
/// </summary>
/// <remarks>
/// You should not usually need to use this interface - it is for advanced scenarios only.
/// </remarks>
[NotClientImplementable]
public interface ISetLogicalParent
{
/// <summary>
/// Sets the control's parent.
/// </summary>
/// <param name="parent">The parent.</param>
void SetParent(ILogical? parent);
}
}