Completed
Last Updated: 07 Aug 2024 08:11 by ADMIN
Release 2024.3.806 (2024 Q3)

Changing the value of the DocumentSource property at runtime causes the RadPdfViewer to display a busy indicator and not update the displayed PDF file with the new one.

To work this around, derive from the RadPdfViewer and create a new dependency property for the property of the type of PdfDocumentSource (for example, from your view model). In its callback method, call the SetDocumentSource method of the derived RadPdfViewer by passing the new value:

public class MyPdfViewer : RadPdfViewer
{
    public PdfDocumentSource PdfDocumentSource
    {
        get { return (PdfDocumentSource)GetValue(PdfDocumentSourceProperty); }
        set { SetValue(PdfDocumentSourceProperty, value); }
    }

    public static readonly DependencyProperty PdfDocumentSourceProperty =
        DependencyProperty.Register("PdfDocumentSource", typeof(PdfDocumentSource), typeof(MyPdfViewer), new PropertyMetadata(new PropertyChangedCallback(OnDocumentSourceChanged)));

    private static void OnDocumentSourceChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
    {
        MyPdfViewer viewer = (MyPdfViewer)d;

        viewer.SetDocumentSource((PdfDocumentSource)e.NewValue);
    }
}
<local:MyPdfViewer x:Name="pdfViewer" PdfDocumentSource="{Binding MyViewModelPropertyOfTypePdfDocumentSource}" />
Completed
Last Updated: 01 Jul 2024 11:22 by ADMIN
Release 2024.2.701 (Preview)
ArgumentException when there are bookmarks that point to the same location: System.ArgumentException: 'An item with the same key has already been added.
Completed
Last Updated: 28 Aug 2024 06:51 by ADMIN
Release 2024.3.802 (2024 Q3)
Text is not displayed when using embedded subset of the ToyotaTypeLight font.
Completed
Last Updated: 01 Jul 2024 11:22 by ADMIN
Release 2024.2.701 (Preview)
 Form XObject that contains path with a Matrix position is not rendered.
Completed
Last Updated: 02 Aug 2024 11:09 by ADMIN
Release 2024.3.802 (2024 Q3)
When changing the device culture to RTL (e.g. Hebrew but not only) in a project targeting .NET 5 (or later), some documents are rendered incorrectly.
Completed
Last Updated: 02 Jul 2024 05:51 by ADMIN
Release 2024.2.701 (Preview)
The image inside an XObejct is not shown in the correct position. 
Completed
Last Updated: 18 Oct 2023 08:32 by ADMIN
Release LIB 2023.3.1023 (23 Oct 2023)
PdfViewer: The document remains locked when using bound PdfDocumentSource and ReadOnDemand even if it is changed.
Completed
Last Updated: 01 Sep 2023 13:31 by ADMIN
Release LIB 2023.2.904 (4 Sep 2023)
NullReferenceException when searching for a bookmark that does not have a destination.
Completed
Last Updated: 28 Aug 2023 08:22 by ADMIN
Release LIB 2023.2.904 (4 Sep 2023)
"FixedDocumentViewers_NavigationPane_Bookmarks" localization string is not present for the Italian language. 
Completed
Last Updated: 16 Aug 2023 08:32 by ADMIN
Release LIB 2023.2.821 (21 Aug 2023)
NullreferenceException when searching for a bookmark that does not point to a specific page.
Completed
Last Updated: 09 Aug 2023 07:26 by ADMIN
Release LIB 2023.2.821 (21 Aug 2023)
When loading a document with no Encoding set and containing MicrosoftNonSymbolicGlyph an exception is thrown and the content is not loaded successfully: System.NullReferenceException: 'Object reference not set to an instance of an object.'
Completed
Last Updated: 22 Aug 2023 11:59 by ADMIN
Release LIB 2023.2.904 (4 Sep 2023)
ArgumentException when using invalid regex in the find dialog
Completed
Last Updated: 09 Aug 2023 06:59 by ADMIN
Release LIB 2023.2.821 (21 Aug 2023)
Created by: Jacek
Comments: 0
Category: PDFViewer
Type: Bug Report
1
Border width is incorrect with some documents.
Completed
Last Updated: 08 Aug 2023 06:09 by ADMIN
Release LIB 2023.2.821 (21 Aug 2023)

The CurrentPageTextBox in the toolbar has stopped displaying in the latest version.

Workaround: 

<telerik:CurrentPageTextBox x:Name="PART_CurrentPageNumberTextBox" 
                            HorizontalContentAlignment="Center" 
                            Margin="2" Text="{Binding FixedDocumentViewer.CurrentPageNumber, Mode=TwoWay}"
                            VerticalContentAlignment="Center" Width="45" 
                            telerik:StyleManager.Theme="Office_Black"/>

Completed
Last Updated: 26 Jun 2023 12:00 by ADMIN
Release LIB 2023.2.703 (03 Jul 2023)
DivideByZeroException in ParallelContentElementsPainter when loading a scanned file.
Completed
Last Updated: 31 May 2023 06:57 by ADMIN
Release LIB 2023.1.612 (12 Jun 2023)

The glyphs are rendered with additional unexpected lines when a specific custom CFF font is used to show them.

Completed
Last Updated: 08 May 2023 14:33 by ADMIN
Release R2 2023
An exception is thrown when importing documents with no page contents but only AcroForms.
Completed
Last Updated: 07 Apr 2023 08:46 by ADMIN
Release LIB 2023.1.407 (07 Apr 2023)
For some TrueType fonts, the spaces are displayed as rectangles.
Completed
Last Updated: 07 Apr 2023 08:46 by ADMIN
Release LIB 2023.1.407 (07 Apr 2023)
Loading specific documents leads to mispositioned and/or missing text content.
Completed
Last Updated: 10 Jul 2023 09:57 by ADMIN
Release R2 2023 SP1

The thinnest line thickness is thinner than in Adobe and it is not scaled according to the scale factor.

Observed:

 

1 2 3 4 5 6