using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Text; #pragma warning disable 1591 namespace PdfiumViewer { public class PdfMarkerCollection : Collection { public event EventHandler CollectionChanged; protected override void ClearItems() { base.ClearItems(); OnCollectionChanged(EventArgs.Empty); } protected override void InsertItem(int index, IPdfMarker item) { base.InsertItem(index, item); OnCollectionChanged(EventArgs.Empty); } protected override void RemoveItem(int index) { base.RemoveItem(index); OnCollectionChanged(EventArgs.Empty); } protected override void SetItem(int index, IPdfMarker item) { base.SetItem(index, item); OnCollectionChanged(EventArgs.Empty); } protected virtual void OnCollectionChanged(EventArgs e) { CollectionChanged?.Invoke(this, e); } } }