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.
 
 
 

23 lines
582 B

namespace Avalonia.Layout
{
/// <summary>
/// Defines the root of a layoutable tree.
/// </summary>
public interface ILayoutRoot : ILayoutable
{
/// <summary>
/// The size available to lay out the controls.
/// </summary>
Size ClientSize { get; }
/// <summary>
/// The scaling factor to use in layout.
/// </summary>
double LayoutScaling { get; }
/// <summary>
/// Associated instance of layout manager
/// </summary>
ILayoutManager LayoutManager { get; }
}
}