I got the following sticky note example:
If the sticky note has more than 9 rows, the additional rows are not visible. I'm able to navigate through the note with my arrow keys. If I'm going to scroll with the mouse wheel, it seems to ignore the popup and just changes the page.
Is it possible to activate scrolling for sticky note popups?

Yes, it is possible to activate scrolling for sticky notes.
The problem is most apparent when using the single page view. It appears to work as expected in continuous mode.
However it is not as simple as setting
VerticalScrollVisibility = ScrollBarVisibility.Auto;. There are a few files that need to be modified to get this working.The good news is that we can get the expected behaviour by modifying the code in the provided samples.
Solution
The solution is to add some handling for the
PreviewMouseWheelevent coming from thePDFViewWPFclass.In the downloaded samples, the following changes were made to get things running as expected:
Add a method to handle the PreviewMouseWheel event in the
NoteHostclass (Samples/PDFViewWPFTools/CS/Utilities/NoteHost.cs)mTextBox.VerticalScrollBarVisibility = ScrollBarVisibility.Auto;in theNoteHost.CreateNoteAndArrow()method, after themTextBoxobject is instantiated (~line 183).Next, edit the
NoteManagerclass - Samples/PDFViewWPFTools/CS/Utilities/NoteManager.cs - and add aHandlePreviewMouseWheelmethod. This will internally call theHandlePreviewMouseWheelon each displayed (opened) note and break at the first one where the event gets handled.Next, edit the
ToolManagerclass to ensure that the note manager gets a chance to handle thePreviewMouseWheelbefore attempting a page change. Open Samples/PDFViewWPFTools/CS/ToolManager.cs and navigate to thePDFView_PreviewMouseWheel. The existing method should look like this:Replace it with the below code:
By doing the above, we are giving the
NoteManagera chance to handle thePreviewMouseWheelbefore doing anything else with it.Another point to note is that we have to now "do the scrolling" in code, using the
mTextBox.ScrollToVerticalOffsetmethod in theNoteHostclass.