Hi,
I am storing the user changes in the PDF viewer for multiple PDFs.
For zoom, there is the ScaleFactorChanged event.
It seems there is no event exposed for Rotation, like RotationChanged?
How is it possible to store the information when the user changes the rotation?
As a workaround, I now check the rotation with :
DetailPdfViewer.CommandDescriptors.RotateClockwiseCommandDescriptor.Command.CanExecuteChanged += OnRotationChanged;
and then get DetailPdfViewer.RotationAngle, but this seems really hacky to me. It just triggers to often, so I do not like having this in production too long.
Best regards,
Kevin