On a windows store app project, im using a PDFtron PDFViewCtrl to display a pdf document. I have a part of the screen where the document is displayed, and it is working well.
I would like to know if there is a way to disable surface pen funcionality on this control, because as it is right now, when i pass over document with the pen, it starts drawing lines.
This is my XAML:
<Grid x:Name="pdfViewer" Background="Transparent" Canvas.ZIndex="111" >
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<Border x:Name="PDFViewBorder" Background="White" Grid.Row="0"/>
</Grid>
and this is my code behind
MyPDFViewCtrl = new pdftron.PDF.PDFViewCtrl();
PDFViewBorder.Child = MyPDFViewCtrl;
docpdf = new pdftron.PDF.PDFDoc(file);
docpdf.InitSecurityHandler();
MyPDFViewCtrl.SetDoc(docpdf);