logo
Welcome Guest! To enable all features please Login or Register.

Notification

Icon
Error

Post a reply
From:
Message:

Maximum number of characters in each post is: 32767
Bold Italic Underline   Highlight Quote Choose Language for Syntax Highlighting Insert Image Insert an existing Attachment or upload a new File... Create Link   Unordered List Ordered List   Left Justify Center Justify Right Justify   Outdent Indent   More BBCode Tags
Font Color Font Size
Security Image:
Enter The Letters From The Security Image:
  Preview Post Cancel

Last 10 Posts (In reverse order)
bandy Posted: Wednesday, October 26, 2016 11:24:38 AM(UTC)
 
But of course - That did it! Thanks!
Paul Rayman Posted: Tuesday, October 25, 2016 3:36:16 PM(UTC)
 
Hi,
you should write the following XAML

Code:

        <ScrollViewer Grid.Row="1" CanContentScroll="True"  VerticalScrollBarVisibility="Auto" HorizontalScrollBarVisibility="Auto">
            <Wpf:PdfViewer Name="pdfViewer1" />
        </ScrollViewer>
bandy Posted: Monday, October 24, 2016 6:34:15 AM(UTC)
 
Hello,

I've created a simple WPF test application (following your sample code) which loads a PDF (multiple pages) into the wpf-PdfViewer Control. It has the following attributes set:

CanVerticallyScroll="True"
CanHorizontallyScroll="True"
ScrollViewer.HorizontalScrollBarVisibility="Visible"
ScrollViewer.VerticalScrollBarVisibility="Visible"
ScrollViewer.CanContentScroll="True

Still... No scroll bars are visible.

What am I missing?