// Copyright (c) The Perspex Project. All rights reserved.
// Licensed under the MIT license. See licence.md file in the project root for full license information.
using System.Collections.Generic;
using Perspex.Collections;
namespace Perspex.Controls
{
///
/// A collection of s.
///
public class Controls : PerspexList
{
///
/// Initializes a new instance of the class.
///
public Controls()
{
ResetBehavior = ResetBehavior.Remove;
}
///
/// Initializes a new instance of the class.
///
/// The initial items in the collection.
public Controls(IEnumerable items)
: base(items)
{
ResetBehavior = ResetBehavior.Remove;
}
}
}