File: TrackableCollection.cs | Web Access |
Project: src\src\Controls\src\Core\Controls.Core.csproj (Microsoft.Maui.Controls) |
#nullable disable using System; using System.Collections.ObjectModel; namespace Microsoft.Maui.Controls { internal class TrackableCollection<T> : ObservableCollection<T> { public event EventHandler Clearing; protected override void ClearItems() { Clearing?.Invoke(this, EventArgs.Empty); base.ClearItems(); } } } |