Example #1
0
        public void AddUpdatedAnnotation(PDFAnnotation annotation)
        {
            if (!annotations.Contains(annotation))
            {
                annotations.Add(annotation);
                annotation.Bindable.PropertyChanged += Bindable_PropertyChanged;
            }

            OnPDFAnnotationListChanged?.Invoke();
        }
Example #2
0
 private void Bindable_PropertyChanged(object sender, PropertyChangedEventArgs e)
 {
     OnPDFAnnotationListChanged?.Invoke();
 }