using System.Collections.Generic; using Avalonia.Collections; namespace Avalonia.Controls { /// /// A collection of s. /// public class Controls : AvaloniaList { /// /// 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; } } }