15 changed files with 57 additions and 29 deletions
@ -0,0 +1,19 @@ |
|||
// -----------------------------------------------------------------------
|
|||
// <copyright file="IPanel.cs" company="Steven Kirk">
|
|||
// Copyright 2015 MIT Licence. See licence.md for more information.
|
|||
// </copyright>
|
|||
// -----------------------------------------------------------------------
|
|||
|
|||
namespace Perspex.Controls |
|||
{ |
|||
/// <summary>
|
|||
/// Interface for controls that can contain multiple children.
|
|||
/// </summary>
|
|||
public interface IPanel : IControl |
|||
{ |
|||
/// <summary>
|
|||
/// Gets or sets the children of the <see cref="Panel"/>.
|
|||
/// </summary>
|
|||
Controls Children { get; set; } |
|||
} |
|||
} |
|||
Loading…
Reference in new issue