In Development
Last Updated: 26 Jul 2024 13:25 by ADMIN

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}" />
In Development
Last Updated: 25 Jul 2024 05:31 by ADMIN
When the font size is changed through the Fluent palette, it is not respected in RadNavigationViewItems.
In Development
Last Updated: 24 Jul 2024 13:41 by ADMIN
Currently, setting the IsExpandable and IsTabStop properties to False of the LayoutControlExpanderGroup element does not prevent navigating to the expand/collapse RadToggleButton and expanding/collapsing it.
In Development
Last Updated: 04 Jul 2024 10:56 by ADMIN
Grouped grid columns cannot be expanded or collapsed by clicking the row in the Windows 11 theme with XAML binaries.
In Development
Last Updated: 27 May 2024 11:24 by ADMIN
Improve the speed of the delete operation when deleting content in large documents.
In Development
Last Updated: 21 May 2024 10:28 by ADMIN
Exception when changing ItemsSource when it's a CollectionViewSource and grouping is applied.
In Development
Last Updated: 16 May 2024 05:27 by ADMIN
Text is not displayed when using embedded subset of the ToyotaTypeLight font.
In Development
Last Updated: 15 May 2024 06:28 by ADMIN
Scheduled for 2024.2.426 (2024 Q2)
The read-only flag is not respected when importing a document
In Development
Last Updated: 13 May 2024 10:38 by ADMIN
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.
In Development
Last Updated: 07 May 2024 10:34 by ADMIN
OverflowException is thrown while importing document using Helvetica font with custom encoding.
In Development
Last Updated: 26 Apr 2024 16:34 by ADMIN
As a result, the glyphs are not measured and positioned properly. The issue applies to the TrueType and Type1 fonts.
In Development
Last Updated: 08 Apr 2024 07:09 by ADMIN
When the font is not embedded in the document, PdfViewer tries to read it from the OS. However, the Calibri-Font is not properly parsed and a NullReferenceException is thrown internally for its encoding. 
In Development
Last Updated: 14 Mar 2024 09:08 by ADMIN

When the SelectionMode of RadAutoCompleteBox is changed, the search text is cleared. However, this clears only the Text property of the underlying TextBox element. The SearchText property of the control is not cleared.

To work this around, you can manually set the SearchText after setting the SelectionMode.
this.autoCompleteBox.SelectionMode = AutoCompleteSelectionMode.Multiple;
this.autoCompleteBox.SearchText = null;