Telerik Forums
UI for WPF Forum
0 answers
16 views
When inserting bullet and number lists using the built in options for a telerik rad rich text box. The font size appears to be different.



I can correct it by changing font size to something else and changing back to what I want. I have default font size set to 12 and font family set to times new roman for the radRichTextBox. Any ideas?
Patrick
Top achievements
Rank 1
 asked on 19 Sep 2025
1 answer
23 views

I use RadRichTextBox (WPF) to edit HTML documents.

These contain images with annotations.

It works as expected (except for the context menu popping up when I mark an image) and I can position the images according to my needs.

See Before.png where the red arrow points to something in the image.

When I save the HTML and load it into the RadRichTextBox again the image positioning is totally gone. See After.png

Am I missing something or does the HtmlDataProvider simply not work as expected?

Dimitar
Telerik team
 answered on 08 Aug 2025
0 answers
36 views

I am using Telerik UI for WPF 2024 Q4\Binaries.NoXaml\WPF80\Telerik.Windows.Documents.Flow.FormatProviders.Doc.dll (version 2024.4.1106.60) on Windows 11 Pro (24H2). The program is developed using VS 2022.

It simply tries to load and display the attached DOCX file and the component crashes during layout with a null reference exception.

         using var instream = File.OpenRead(path);

         var openXmlRadDocProvider =
            new Telerik.Windows.Documents.FormatProviders.OpenXml.Docx.DocxFormatProvider();

         var raddoc = openXmlRadDocProvider.Import(instream);
         RadRtb.Document = raddoc;

Word displays this perfectly. Trying to determine if this is a Telerik bug or a "me" problem.

Stenly replied and said he was unable to reproduce using 2025.2.707. I am able to reproduce the crash with that version. I have attached my project in case I'm doing something wrong in code.

Thanks.

-John Reilly.

Reilly
Top achievements
Rank 1
Veteran
 updated question on 16 Jul 2025
1 answer
42 views

Hi,

If I select multiple rows in a table in a RichTextBox, the delete options become un-selectable. How can I change this to enable me to delete multiple selected rows from a table?

 

 

Stenly
Telerik team
 answered on 09 May 2025
1 answer
52 views

Hey Telerik Team,

I'm working with the RadRichTextEditor in WPF and ran into a little issue. When I switch my keyboard to Arabic, I was expecting to see Arabic digits (٠١٢٣٤٥), but instead, it still shows the standard Western numbers.

Is there a way to enable Arabic digits when typing in Arabic? I’ve looked around but haven’t had much luck so far. If there's a setting or a workaround that could help, I’d really appreciate any pointers!


using System.Globalization;

Console.OutputEncoding = System.Text.Encoding.UTF8;

CultureInfo arabicCulture = new CultureInfo("ar-AE");
arabicCulture.NumberFormat.DigitSubstitution = DigitShapes.NativeNational;
arabicCulture.NumberFormat.NativeDigits = ["٠", "١", "٢", "٣", "٤", "٥", "٦", "٧", "٨", "٩"];
//arabicCulture.CultureTypes = CultureTypes.
Thread.CurrentThread.CurrentCulture = arabicCulture;
Thread.CurrentThread.CurrentUICulture = arabicCulture;


int number = 12345;
Console.WriteLine(number.ToString(CultureInfo.CurrentCulture));

Stenly
Telerik team
 answered on 20 Mar 2025
1 answer
56 views

Hi,

In my project I am working on using RichTextBox to edit HTML text. In the project I use implicit styling and the Expression Dark theme. And for everything else in the project it works fine, but I am having issues with the RichTextBox.

I have added the reference to the dll, and in App.xaml I have added the styles. I was expecting the textbox to become darker, but I can also see a bunch of errors from the styling.

Wonder what I am missing.

 

Martin Ivanov
Telerik team
 answered on 27 Feb 2025
0 answers
52 views

 

Hello,

I have found a bug in the Track Changes Mode. It also occurs in the latest version (in the demo). To reproduce the bug:

  1. Enable Track Changes mode.
  2. Insert some text, e.g., "Lorem Ipsum is simply dummy text of the printing and typesetting industry."
  3. Wait for a short period (to allow the insertion to occur at different times), approximately 10-15 seconds.
  4. After inserting a word entire the existing text (like on the screenshot), type a character or word, then immediately try to delete the last character using the backspace key. At this point, the error occurs: backspace does not remove the last character, only on the second attempt.

 

 

 

The error occurs in Telerik WPF 2022.1.222, but in the new version, it still appears, though without throwing exceptions (I checked in the lastest demo, and the last character doesn't delete on the first attempt).

Can you reproduce this issue, or is it a known problem?

Is there a solution available?

 

Emin Sadigov
Top achievements
Rank 2
Iron
Iron
Iron
 updated question on 21 Jan 2025
1 answer
181 views

I have a new WPF application, one that I am updating from Framework to Core.   Everything has been converted and working properly except for one thing: the CheckBoxControl controls are not displaying.  All other controls, including things like RadButton are RadGridView, are all displaying and working perfectly.    I deleted the BIN and OBJ folders and cleaned the project, no change.   

If I change the code to use the standard WPF CheckBox control everything works correctly.

The main project of the solution has this inside it's project file:

    <PackageReference Include="Telerik.UI.for.Wpf.80.Xaml" Version="2024.4.1213" />
    <PackageReference Include="Telerik.Windows.Themes.Crystal.for.Wpf" Version="2024.4.1213" />

I have other projects in the solution that have working Telerik controls (except for the CheckBoxControl) that contain this in their project files:

    <PackageReference Include="Telerik.UI.for.Wpf.80.Xaml" Version="2024.4.1213" />

in the xaml form:

<telerik:CheckBoxControl Grid.Row="5" Grid.Column="0" Name="ChkCustomProcess"  HorizontalAlignment="Right" VerticalAlignment="Center"  Margin="5" />

// I have tried this with and without binding to the IsChecked property.

Everything else works fine, including the theming, except for the invisible CheckBox Control.   IntelliSense works in the editor; no compilation errors or warnings.

I am using the NuGet packages from Telerik.  There are no pending updates. I am not referencing any NoXaml packages.

It's probably something simple I am missing. Any thoughts and ideas would be greatly appreciated.

Thanks,
Lou

Martin Ivanov
Telerik team
 answered on 13 Jan 2025
0 answers
54 views

I would like to drag text outside of a WPF RadRichTextBox into a different App.

It seems that dragging any text just outside of this control is not possible, not even within the same app.
IMHO the problem is, that text can be moved within this control, and this feature cannot be deactivated.

Thanks a lot in advance for any hints.

Edit: Just checked with standard RichTextBox (FlowControl) no problems out of the box. I can drag text internal and as soon as mousepointer went outside, everything is fine and works there.  Try this with RadRichTextBox and the Prompt goes crazy inside of your control.

 

 




Marcus
Top achievements
Rank 2
 updated question on 06 Dec 2024
2 answers
53 views
Hi every one,

I've read the documentation about RadSpellChecker and couldn't find anything to do with RadSyntaxEditor. I've already implemented a spellchecker inspiring WordSpellChecker class from SDK Sample Browser and linked it to the RadSyntaxControl via a tagger although I'm not sure if it's a best practice. This solution has a couple of issues including having a lag as a result of working with document in WordSpellChecker and also it needs to be implemented everything from scratch like managing the dictionary.

Does anyone have any better idea or is there any smooth way to join them?

Thanks,
Dariush
Dariush
Top achievements
Rank 1
Iron
Iron
Iron
 answered on 04 Nov 2024
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?