Completed
Last Updated: 21 Jul 2026 11:15 by ADMIN
If the document contains a simple field without run inside, the import process fails. 

      <w:fldSimple w:instr="page" w:dirty="true"/>

The same document with a run inside the field does not cause an error

      <w:fldSimple w:instr="page" w:dirty="true">
        <w:r>
          <w:t>1</w:t>
        </w:r>
      </w:fldSimple>
Unplanned
Last Updated: 21 Jul 2026 10:43 by ADMIN
Created by: Robert
Comments: 1
Category: SyntaxEditor
Type: Bug Report
0

RadSyntaxEditor, while inside of a virtualized RadGridView, stealings focus immediately upon loading. It appears to do this automatically and there is no configuration to disabling. Meaning when scrolling in a RadGridView with virtualized rows, when a row with the RadSyntaxEditor materializes it will automatically steal focus from other elements.

This can be worked around using custom behavior that discards the first preview keyboard focus event that it receives.

private void onPreviewGotKeyboardFocus(object s, KeyboardFocusChangedEventArgs e)
{
    if (!this.SuppressAutoFocus || _wasFocusSuppressed)
    {
        return;
    }

    _wasFocusSuppressed = true;
    e.Handled = true;
}

The offending line of code is this in RadSyntaxEditor.InitActiveEditorPresenter:

if (flag)
{
    base.Dispatcher.BeginInvoke((Action)delegate
    {
        Focus();
    });
}

Request: Add a dependency property to allow opting-out of this default behavior. The above workaround works, but is a bit hacky for something that should probably be built-in.

Completed
Last Updated: 20 Jul 2026 13:58 by ADMIN
Release Telerik UI for WPF 2026.3.812 (Q3 2026)
PDF Signature(image) is displayed on the incorrect location when using annotations.
Completed
Last Updated: 20 Jul 2026 11:22 by ADMIN
Release Telerik UI for WPF 2026.3.812 (Q3 2026)
Created by: Marcel
Comments: 1
Category: Chat
Type: Bug Report
0

When using RadChat control and running the application, 2 binding errors appear in the Output Tab of Visual Studio.

System.Windows.Data Error: 4 : Cannot find source for binding with reference 'RelativeSource FindAncestor, AncestorType='Telerik.Windows.Controls.RadPromptInput', AncestorLevel='1''. BindingExpression:Path=Padding; DataItem=null; target element is 'RadGlyph' (Name=''); target property is 'Margin' (type 'Thickness')

System.Windows.Data Error: 4 : Cannot find source for binding with reference 'RelativeSource FindAncestor, AncestorType='Telerik.Windows.Controls.RadPromptInput', AncestorLevel='1''. BindingExpression:Path=Padding; DataItem=null; target element is 'RadGlyph' (Name=''); target property is 'Margin' (type 'Thickness')

Completed
Last Updated: 20 Jul 2026 11:22 by ADMIN
Release Telerik UI for WPF 2026.3.812 (Q3 2026)
Created by: Dimitar
Comments: 0
Category: RichTextBox
Type: Bug Report
3
Memory leak when changing the documents
Completed
Last Updated: 17 Jul 2026 09:41 by ADMIN
Release Telerik UI for WPF 2026.2.701
Created by: Swapnil
Comments: 1
Category: RichTextBox
Type: Bug Report
0
After selecting a word, pressing the left arrow key places the cursor on the right side of the word rather than moving it to the left as expected.
Completed
Last Updated: 17 Jul 2026 09:41 by ADMIN
Release Telerik UI for WPF 2026.2.701
Inspecting a DocumentPosition instance in the Visual Studio debugger triggers recursive DebuggerDisplay expansion. The displayed tooltip repeats Position and Location values until Visual Studio reports that DebuggerDisplay evaluation reached max recursion count.


Completed
Last Updated: 17 Jul 2026 07:43 by ADMIN
Some of the lines that should be dashed are rendered as continuous lines.
Completed
Last Updated: 16 Jul 2026 14:19 by ADMIN

Workaround for documents generated with PdfProcessing: When drawing lines using the FixedContentEditor the IsFilled graphic property should be set to false:

RadFixedDocument document = new RadFixedDocument();

Rect rect = new Rect(0, 0, 50, 50);
FixedContentEditor editor = new FixedContentEditor(document.Pages.AddPage());
editor.GraphicProperties.IsFilled = false;
editor.GraphicProperties.IsStroked = true;

editor.Position.Translate(50, 50);
editor.GraphicProperties.StrokeColor = new RgbColor(255, 0, 0);
editor.DrawText("Lines");
editor.DrawLine(rect.TopLeft, rect.TopRight);
editor.DrawLine(rect.TopRight, rect.BottomRight);
editor.DrawLine(rect.BottomRight, rect.BottomLeft);
editor.DrawLine(rect.BottomLeft, rect.TopLeft);
Completed
Last Updated: 15 Jul 2026 14:53 by ADMIN
Created by: Darcy
Comments: 0
Category: PDFViewer
Type: Bug Report
1
The PdfViewer has slow performance when rendering images that have large size but are scaled down.
Completed
Last Updated: 15 Jul 2026 14:35 by ADMIN

There are missing characters when importing documents containing Standard fonts with a Differences array defined in the Encoding, which contains characters that do not fit in the first 255 glyph definitions in the font. Most of these characters are the ones with an accent such as "ccaron" (č).

Completed
Last Updated: 15 Jul 2026 14:35 by ADMIN
The slow performance when creating thumbnail is only reproducible with specific documents.
Under Review
Last Updated: 14 Jul 2026 14:53 by ADMIN
This can be observed by forcing the selection to be the first line, which would then have the pop up appear above and outside of the rich text box. This will make it appear opaque, but not really interactable. This behavior is not observed if done on a lower line, where it appears within the rich text box.
Unplanned
Last Updated: 13 Jul 2026 15:22 by Vladimir
A degraded performance is observed when the control is used in an application published with ClickOnce deployment. 
Unplanned
Last Updated: 08 Jul 2026 13:01 by ADMIN
Created by: Keisuke
Comments: 1
Category: RichTextBox
Type: Bug Report
1
Multiline Selection Highlight is distorted when using Japanese IME (GIF attached). 
Unplanned
Last Updated: 08 Jul 2026 08:50 by ADMIN
In this case, the Move() method of the bound collection (ObservableCollection in this case) is used. The internal QueryableCollectionView correctly tracks the moved item's new position, but CollectionEditor.CurrentIndex remains at the old index, causing the visual selection highlight to point to the wrong item.
Completed
Last Updated: 03 Jul 2026 06:41 by ADMIN
Release 2026 Q2 (2026.2.701)

Environment:

  • Visual Studio 2026 Version 18.6.1 (May 2026 release)
  • Visual Studio language: Japanese
  • .NET 10 WPF project
  • Telerik UI for WPF 2026.2.520

Problem:

Visual Studio freezes frequently while editing XAML when using Telerik UI for WPF 2026.2.520.
The issue does NOT occur with Telerik UI for WPF 2026.1.415.

Steps to reproduce:

  1. Install the "Progress Telerik UI for WPF Extension"
  2. Create a new WPF project using the Telerik extension/template (Empty)
  3. Open the automatically generated MainWindow.xaml
  4. Inside the existing <Grid> element, type:
    <Grid
  5. At the moment XAML IntelliSense/code completion is triggered, Visual Studio freezes

Additional information:

  • XAML Designer is disabled
  • Deleting the .vs folder does not help
  • No third-party Visual Studio extensions are installed
  • The issue only occurs with Telerik UI for WPF 2026.2.520
  • Downgrading to Telerik UI for WPF 2026.1.415 resolves the issue completely

Could you please confirm whether this is a known issue related to Visual Studio 2026 / .NET 10 compatibility?

Unplanned
Last Updated: 01 Jul 2026 09:27 by ADMIN

This behavior is observed when the Pane is dragged and dropped near the Compass border (but not on it) several times.

 

In Development
Last Updated: 29 Jun 2026 14:27 by ADMIN

The busy animation keeps running on the background when the busy indicator control gets unloaded (removed from the visual tree).

To work this around, set the IsBusy property of RadBusyIndicator to False in its Unloaded event handler.

In Development
Last Updated: 29 Jun 2026 06:23 by ADMIN

RadSpreadsheetFormulaBar has a drop down list that shows the named ranges in the document. If a named range contains an underscore character (ex: Income_Amount), the associated item in the drop down won't display the underscore (ex: IncomeAmount).

To workaround this, you can use a global Loaded event handler of RadMenuItem and override the Header content with a TextBlock.

static MainWindow()
{
    EventManager.RegisterClassHandler(typeof(RadMenuItem), RadMenuItem.LoadedEvent, new RoutedEventHandler(OnMenuItemLoaded));
}

private static void OnMenuItemLoaded(object sender, RoutedEventArgs e)
{
    var menuItem = (RadMenuItem)sender;
    if (menuItem.DataContext is DefinedName context)
    {
        menuItem.Header = new TextBlock() { Text = context.Name };
    }
}

1 2 3 4 5 6