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.
 
 
 

24 lines
757 B

// -----------------------------------------------------------------------
// <copyright file="ILayoutRoot.cs" company="Steven Kirk">
// Copyright 2013 MIT Licence. See licence.md for more information.
// </copyright>
// -----------------------------------------------------------------------
namespace Perspex.Layout
{
/// <summary>
/// Defines the root of a layoutable tree.
/// </summary>
public interface ILayoutRoot : ILayoutable
{
/// <summary>
/// The size available to layout the controls.
/// </summary>
Size ClientSize { get; }
/// <summary>
/// The layout manager to use for laying out the tree.
/// </summary>
ILayoutManager LayoutManager { get; }
}
}