Im using Pdfnet on a windows 8.1 project, i would like to know if there is a way to do a autosave when user inserts or removes a annotation (ink, highlight, etc...), or at least detect when a annotation is added to the document ( i can do the save then )
Edit:
I managed to do a kind of autosave using
_ViewModel.PDFViewCtrl.GetAnnotationCanvas().ManipulationCompleted += MainPage_ManipulationCompleted;
and in that event i save the document everytime its triggered, works for well except for "note" annotations, that dont trigger the event when inserted.