Completed
Last Updated: 16 Sep 2015 08:19 by ADMIN
The LocalizeStrings method of the FloatingBlockPropertiesDialog refers to the "Documents_FindReplaceDialog_ReplaceWith" string. This should be "Documents_FloatingBlockPropertiesDialog_TextWrapping"

Workaround:
public Form1()
{
    InitializeComponent();

    FieldInfo fi = this.radRichTextEditor1.RichTextBoxElement.FloatingBlockPropertiesDialog.GetType().GetField("radPageViewPage2", BindingFlags.NonPublic | BindingFlags.Instance);
    RadPageViewPage textWrappingPage = (RadPageViewPage)fi.GetValue(this.radRichTextEditor1.RichTextBoxElement.FloatingBlockPropertiesDialog);
    textWrappingPage.Text = "TextWrapping";
}
Completed
Last Updated: 15 Oct 2020 05:07 by ADMIN
Release R3 2020 SP1
To reproduce:
- Add RichTextEditorRuler and RichTextEditor to a form.
- Add some tab stops in the ruler and press the tab key.

Workaround:
void radRichTextEditor1_CommandExecuting(object sender, Telerik.WinForms.Documents.RichTextBoxCommands.CommandExecutingEventArgs e)
{
    if (e.Command is IncrementParagraphLeftIndentCommand)
    {
        e.Cancel = true;
        TabForwardCommand tabForward = new TabForwardCommand(this.radRichTextEditor1.RichTextBoxElement);
        tabForward.Execute();
    }
}
Completed
Last Updated: 23 Nov 2016 11:07 by ADMIN
Workaround: explicitly set the font size of the spans in the heading paragraphs
foreach (Section section in this.radRichTextEditor1.Document.Sections)
{
    foreach (Block block in section.Blocks)
    {
        Paragraph p = block as Paragraph;
        if (p != null && p.StyleName == "Heading1")
        {
            foreach (var item in p.Inlines)
            {
                Span s = item as Span;
                if (s!= null)
                {
                    s.FontSize = p.FontSize;
                }
            }
        }
    }
}
Completed
Last Updated: 13 Dec 2021 12:00 by ADMIN
Release R1 2021
If the main document part of a DOCX document is with name different than "document.xml", for example "document2.xml", the content of the document is not imported. 

Such documents are created by OpenXML SDK, if for example this tutorial is followed:
How to: Convert a word processing document from the DOCM to the DOCX file format - http://tpdogfood.telerik.com/msdn.microsoft.com/en-us/library/office/gg188063(v=office.15).aspx.
Completed
Last Updated: 03 Dec 2018 17:22 by Dimitar
Completed
Last Updated: 20 Oct 2014 14:36 by Kishore
1) Launch the RadRichTextEditor
2) Create  a new file
3) go to insert tab and hit "Header" icon (Header & Footer section)
4) Notice the caret blinks on the top left corner of the document
5) Enter some text for ex: zzzz and notice text entered doesn't show up
5) At this point when you double click outside the header section the whole header and footer section is lost
6) Now double click on the header section again even though the header section is not visible. Still the entered text is not displayed and notice the cursor blinks at the top left corner of the header section
7) Press enter key, now the entered text is displayed. 
Completed
Last Updated: 13 Nov 2014 13:59 by Kishore
Run the RadRichTextEditor
Right click on any image -> Text Wrapping -> More layout options (as shown in the attached fig MoreLayoutOptions.jpg)
Observe that the more layout options doesn't show up most of the times.
Completed
Last Updated: 14 Oct 2014 12:10 by Kishore
Created by: Kishore
Comments: 0
Category: RichTextEditor
Type: Bug Report
0
Launch the RichTextEditor
1) Click the find and replace button on the ribbon bar
2) Close the find and replace dialog box
3) click the find/replace button again , the form doesn't open up
Completed
Last Updated: 27 May 2019 10:37 by ADMIN
Release Fixed in R2 2019 (2019.2.527)
Completed
Last Updated: 27 Nov 2014 09:09 by ADMIN
Created by: Kishore
Comments: 3
Category: RichTextEditor
Type: Bug Report
0
Launch the RichTextEditor and observe the button are not completely visible and some/ most of the dialog boxes cannot be re sized.
--> Home Tab
1) Find/ Replace dialog box, button overlap the textboxes behind them
2) Change Styles , this dialog box cannot be re sized currently 

-->Insert Tab
1) Hyperlink dialog box, this dialog box cannot be re sized currently 
2) BookMarks dialog box, this dialog box cannot be re sized currently
3) Cross Reference dialog box, this dialog box cannot be re sized currently
4) Format Code block Dialog box, this dialog box cannot be re sized currently
5) Insert Symbol dialog box, this dialog box cannot be re sized currently

--> References tab
1) Manage Sources 
2) Insert Caption
3) Cross reference

--> Review tab
1) Spell check dialog box
2) Protect document
Completed
Last Updated: 01 Jul 2019 15:00 by ADMIN
Release R3 2019 (LIB 2019.2.708)
Created by: Tomasz
Comments: 6
Category: RichTextEditor
Type: Bug Report
0

1. Document created via MS-Word, Page orientation is set to Landscape. (MS-Word works OK)

2. Document read into Telerik RichTextEditor and print ignore Landscape settings.

3. Documet "Landscape.rtf" and snapshot in attachmet 

please help me 

Completed
Last Updated: 22 Jul 2019 13:57 by ADMIN
Release R3 2019 (LIB 2019.2.729)

To reproduce:

Type a word and then change the font. The RichTextEditor is not focused. When you click in it the font is restored.

Workaround: 
class MyRichtTextEditorRibbonbar : RichTextEditorRibbonBar
{
    public MyRichtTextEditorRibbonbar()
    {
        this.dropDownListFont.PopupClosed += DropDownListFont_PopupClosed;
    }

    private void DropDownListFont_PopupClosed(object sender, RadPopupClosedEventArgs args)
    {
        this.associatedRichTextEditor.Focus();
    }

  
}

 

Completed
Last Updated: 27 Nov 2014 09:09 by Kishore
As shown in the attached screen shot when as spell checking dialog is opened , "Close button is not seen on the form even though it is present. Spell checking dialog box needs to be re sized.
Completed
Last Updated: 07 Nov 2019 14:19 by ADMIN
Release R1 2020 (LIB 2019.3.1111)

The tab order in the dialog is incorrect, the dialog is not focused when shown.

Workaround: 

public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();

        radRichTextEditor1.RichTextBoxElement.FindReplaceDialog = new MyFindReplaceDialog();

    }
}
class MyFindReplaceDialog : FindReplaceDialog
{
    public MyFindReplaceDialog()
    {
        this.Controls[0].TabIndex = 2; // FindNext button
        this.Controls[1].TabIndex = 3; // Replace Button
        this.Controls[2].TabIndex = 5; // CloseButton
        this.Controls[3].TabIndex = 4; // Replace All button
        //this.Controls[4].TabIndex = 5; // label
        //this.Controls[5].TabIndex = 5; // label
        this.Controls[6].TabIndex = 1; // RepalceWith textbox
        this.Controls[7].TabIndex = 0; // TextToFind  textbox
         

    }
    protected override void OnShown(EventArgs e)
    {
        base.OnShown(e);
        this.Controls[7].Focus();
    }
}

Completed
Last Updated: 07 Feb 2020 10:00 by ADMIN
Release R1 2020 SP1 (LIB 2020.1.210)

I have a RadRichTextEditor. When it contains multiple lines a vertical scroll bar is shown. When I keep writing and press the enter key to insert a carriage return, it starts a new paragraph but the cursor disappears. 

When I press return at the bottom of this control I want the cursor to be kept in sight. See the screenshots I have attached. You can see that after the return you can only see the very top of the cursor, the rest is hidden. You have to actually manually scroll down to get it into view.

When you start typing, this cursor comes into view, but I want it to be in view even if you just press return. Is there a way to get it to do this?

This seems to be the default behavior of this control, as I have created a new application to show this, which doesn't contain any of the formatting which my actual application does.

Completed
Last Updated: 17 Feb 2021 12:25 by ADMIN
Release R1 2021 SP2
The images are not rendered when using .Net Core
Completed
Last Updated: 23 Apr 2020 16:12 by ADMIN
Release R2 2020 (LIB 2020.1.423)
Created by: BERND
Comments: 1
Category: RichTextEditor
Type: Bug Report
0

Hello Telerik team,
today I noticed an issue in the Hanling of the RadRichtextEditor,

If the header and footer are resized and then switched between the header and footer views, the following error appears.  (Also in the demo app)

 

System.ArgumentOutOfRangeException: Value of '319' is not valid for 'Value'. 'Value' should be between 'Minimum' and 'Maximum'.
Parametername: Value
   bei Telerik.WinControls.UI.RadSpinElement.set_Value(Decimal value)
   bei Telerik.WinControls.UI.RichTextEditorRibbonBar.CurrentEditingContext_PropertyChanged(Object sender, PropertyChangedEventArgs e)
   bei Telerik.WinForms.Documents.UI.EditingContext.OnPropertyChanged(String propertyName)
   bei Telerik.WinForms.Documents.UI.EditingContext.AddType(EditingContextTypes type)
   bei Telerik.WinForms.Documents.UI.EditingContext.SetActiveEditorEditingContext(EditingContext value, DocumentEditorType documentEditorType)
   bei Telerik.WinForms.RichTextEditor.RadRichTextBox.SetActiveDocumentEditorInternal(IDocumentEditor documentEditor, DocumentEditorType documentEditorType)
   bei Telerik.WinForms.RichTextEditor.RadRichTextBox.Telerik.WinForms.Documents.UI.IDocumentEditorPresenterContainer.SetActiveDocumentEditor(IDocumentEditor documentEditor, DocumentEditorType documentEditorType)
   bei Telerik.WinControls.RichTextEditor.UI.HeaderFooterPresenterBase.BodyRichTextBox_GotFocus(Object sender, EventArgs e)
   bei Telerik.WinControls.RichTextEditor.UI.UIElement.OnGotFocus(EventArgs e)
   bei Telerik.WinForms.RichTextEditor.RadRichTextBox.OnGotFocus(EventArgs e)
   bei Telerik.WinControls.RichTextEditor.UI.UIElement.OnPropertyChanged(RadPropertyChangedEventArgs e)
   bei Telerik.WinForms.RichTextEditor.RadRichTextBox.OnPropertyChanged(RadPropertyChangedEventArgs e)
   bei Telerik.WinControls.RadObject.RaisePropertyNotifications(RadPropertyValue propVal, Object oldValue, Object newValue, ValueSource oldSource)
   bei Telerik.WinControls.RadObject.SetValueCore(RadPropertyValue propVal, Object propModifier, Object newValue, ValueSource source)
   bei Telerik.WinControls.RadElement.SetValueCore(RadPropertyValue propVal, Object propModifier, Object newValue, ValueSource source)
   bei Telerik.WinControls.RadElement.SetElementFocused(Boolean isFocused)
   bei Telerik.WinControls.RadElement.SetFocusPropertySafe(Boolean isFocused)
   bei Telerik.WinControls.RadElement.Focus(Boolean setParentControlFocus)
   bei Telerik.WinControls.RadElement.Focus()
   bei Telerik.WinControls.RichTextEditor.UI.HeaderFooterPresenterBase.<Update>b__0()
   bei Telerik.WinControls.RichTextEditor.UI.Dispatcher.BeginInvoke(Action executeNext)
   bei Telerik.WinControls.RichTextEditor.UI.HeaderFooterPresenterBase.Update(SectionLayoutBox sectionBox, Boolean isInEditHeaderFooterMode, Boolean shouldFocus, Boolean delayed)
   bei Telerik.WinControls.RichTextEditor.UI.HeaderFooterContainer.UpdateUI(SectionLayoutBox sectionBox, Boolean delayed)
   bei Telerik.WinControls.RichTextEditor.UI.DocumentPagePresenter.UpdateHeaderFooterUI(SectionLayoutBox sectionBox)
   bei Telerik.WinControls.RichTextEditor.UI.DocumentPagePresenter.UpdateUILayersViewPortSize(RectangleF viewPort)
   bei Telerik.WinControls.RichTextEditor.UI.DocumentPagePresenter.MeasureOverride(SizeF availableSize)
   bei Telerik.WinControls.RadElement.MeasureCore(SizeF availableSize)
   bei Telerik.WinControls.RadElement.Measure(SizeF availableSize)
   bei Telerik.WinControls.Layouts.ContextLayoutManager.UpdateLayout()
   bei Telerik.WinControls.Layouts.ContextLayoutManager.UpdateLayoutCallback(ILayoutManager manager)

************** Geladene Assemblys **************
mscorlib
    Assembly-Version: 4.0.0.0.
    Win32-Version: 4.8.4121.0 built by: NET48REL1LAST_C.
    CodeBase: file:///C:/Windows/Microsoft.NET/Framework/v4.0.30319/mscorlib.dll.
----------------------------------------
TelerikExamples
    Assembly-Version: 2020.1.218.40.
    Win32-Version: 2020.1.218.40.
    CodeBase: file:///C:/Program%20Files%20(x86)/Progress/Telerik%20UI%20for%20WinForms%20R1%202020/Examples/QuickStart/Bin/TelerikExamples.exe.
----------------------------------------
System.Windows.Forms
    Assembly-Version: 4.0.0.0.
    Win32-Version: 4.8.4121.0 built by: NET48REL1LAST_C.
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms/v4.0_4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll.
----------------------------------------
System
    Assembly-Version: 4.0.0.0.
    Win32-Version: 4.8.4001.0 built by: NET48REL1LAST_C.
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System/v4.0_4.0.0.0__b77a5c561934e089/System.dll.
----------------------------------------
System.Drawing
    Assembly-Version: 4.0.0.0.
    Win32-Version: 4.8.3752.0 built by: NET48REL1.
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Drawing/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll.
----------------------------------------
QuickStart
    Assembly-Version: 2020.1.218.40.
    Win32-Version: 2020.1.218.40.
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/QuickStart/v4.0_2020.1.218.40__5bb2a467cbec794e/QuickStart.dll.
----------------------------------------
Telerik.WinControls.UI
    Assembly-Version: 2020.1.218.40.
    Win32-Version: 2020.1.218.40.
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Telerik.WinControls.UI/v4.0_2020.1.218.40__5bb2a467cbec794e/Telerik.WinControls.UI.dll.
----------------------------------------
System.Core
    Assembly-Version: 4.0.0.0.
    Win32-Version: 4.8.4121.0 built by: NET48REL1LAST_C.
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Core/v4.0_4.0.0.0__b77a5c561934e089/System.Core.dll.
----------------------------------------
Telerik.WinControls
    Assembly-Version: 2020.1.218.40.
    Win32-Version: 2020.1.218.40.
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Telerik.WinControls/v4.0_2020.1.218.40__5bb2a467cbec794e/Telerik.WinControls.dll.
----------------------------------------
TelerikCommon
    Assembly-Version: 2020.1.218.40.
    Win32-Version: 2020.1.218.40.
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/TelerikCommon/v4.0_2020.1.218.40__5bb2a467cbec794e/TelerikCommon.dll.
----------------------------------------
System.Xml
    Assembly-Version: 4.0.0.0.
    Win32-Version: 4.8.3752.0 built by: NET48REL1.
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll.
----------------------------------------
Telerik.WinControls.Themes.TelerikMetro
    Assembly-Version: 2020.1.218.40.
    Win32-Version: 2020.1.218.40.
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Telerik.WinControls.Themes.TelerikMetro/v4.0_2020.1.218.40__5bb2a467cbec794e/Telerik.WinControls.Themes.TelerikMetro.dll.
----------------------------------------
System.Configuration
    Assembly-Version: 4.0.0.0.
    Win32-Version: 4.8.3752.0 built by: NET48REL1.
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Configuration/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll.
----------------------------------------
Microsoft.GeneratedCode
    Assembly-Version: 1.0.0.0.
    Win32-Version: 4.8.3752.0 built by: NET48REL1.
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll.
----------------------------------------
Telerik.WinControls.Themes.Fluent
    Assembly-Version: 2020.1.218.40.
    Win32-Version: 2020.1.218.40.
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Telerik.WinControls.Themes.Fluent/v4.0_2020.1.218.40__5bb2a467cbec794e/Telerik.WinControls.Themes.Fluent.dll.
----------------------------------------
Telerik.WinControls.Themes.FluentDark
    Assembly-Version: 2020.1.218.40.
    Win32-Version: 2020.1.218.40.
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Telerik.WinControls.Themes.FluentDark/v4.0_2020.1.218.40__5bb2a467cbec794e/Telerik.WinControls.Themes.FluentDark.dll.
----------------------------------------
RadControlSpy
    Assembly-Version: 2020.1.218.40.
    Win32-Version: 2020.1.218.40.
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/RadControlSpy/v4.0_2020.1.218.40__5bb2a467cbec794e/RadControlSpy.dll.
----------------------------------------
Telerik.WinControls.Themes.Aqua
    Assembly-Version: 2020.1.218.40.
    Win32-Version: 2020.1.218.40.
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Telerik.WinControls.Themes.Aqua/v4.0_2020.1.218.40__5bb2a467cbec794e/Telerik.WinControls.Themes.Aqua.dll.
----------------------------------------
Telerik.WinControls.Themes.Breeze
    Assembly-Version: 2020.1.218.40.
    Win32-Version: 2020.1.218.40.
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Telerik.WinControls.Themes.Breeze/v4.0_2020.1.218.40__5bb2a467cbec794e/Telerik.WinControls.Themes.Breeze.dll.
----------------------------------------
Telerik.WinControls.Themes.Desert
    Assembly-Version: 2020.1.218.40.
    Win32-Version: 2020.1.218.40.
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Telerik.WinControls.Themes.Desert/v4.0_2020.1.218.40__5bb2a467cbec794e/Telerik.WinControls.Themes.Desert.dll.
----------------------------------------
Telerik.WinControls.Themes.HighContrastBlack
    Assembly-Version: 2020.1.218.40.
    Win32-Version: 2020.1.218.40.
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Telerik.WinControls.Themes.HighContrastBlack/v4.0_2020.1.218.40__5bb2a467cbec794e/Telerik.WinControls.Themes.HighContrastBlack.dll.
----------------------------------------
Telerik.WinControls.Themes.Office2007Black
    Assembly-Version: 2020.1.218.40.
    Win32-Version: 2020.1.218.40.
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Telerik.WinControls.Themes.Office2007Black/v4.0_2020.1.218.40__5bb2a467cbec794e/Telerik.WinControls.Themes.Office2007Black.dll.
----------------------------------------
Telerik.WinControls.Themes.Office2007Silver
    Assembly-Version: 2020.1.218.40.
    Win32-Version: 2020.1.218.40.
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Telerik.WinControls.Themes.Office2007Silver/v4.0_2020.1.218.40__5bb2a467cbec794e/Telerik.WinControls.Themes.Office2007Silver.dll.
----------------------------------------
Telerik.WinControls.Themes.Office2010Black
    Assembly-Version: 2020.1.218.40.
    Win32-Version: 2020.1.218.40.
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Telerik.WinControls.Themes.Office2010Black/v4.0_2020.1.218.40__5bb2a467cbec794e/Telerik.WinControls.Themes.Office2010Black.dll.
----------------------------------------
Telerik.WinControls.Themes.Office2010Silver
    Assembly-Version: 2020.1.218.40.
    Win32-Version: 2020.1.218.40.
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Telerik.WinControls.Themes.Office2010Silver/v4.0_2020.1.218.40__5bb2a467cbec794e/Telerik.WinControls.Themes.Office2010Silver.dll.
----------------------------------------
Telerik.WinControls.Themes.Office2010Blue
    Assembly-Version: 2020.1.218.40.
    Win32-Version: 2020.1.218.40.
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Telerik.WinControls.Themes.Office2010Blue/v4.0_2020.1.218.40__5bb2a467cbec794e/Telerik.WinControls.Themes.Office2010Blue.dll.
----------------------------------------
Telerik.WinControls.Themes.Office2013Dark
    Assembly-Version: 2020.1.218.40.
    Win32-Version: 2020.1.218.40.
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Telerik.WinControls.Themes.Office2013Dark/v4.0_2020.1.218.40__5bb2a467cbec794e/Telerik.WinControls.Themes.Office2013Dark.dll.
----------------------------------------
Telerik.WinControls.Themes.Office2013Light
    Assembly-Version: 2020.1.218.40.
    Win32-Version: 2020.1.218.40.
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Telerik.WinControls.Themes.Office2013Light/v4.0_2020.1.218.40__5bb2a467cbec794e/Telerik.WinControls.Themes.Office2013Light.dll.
----------------------------------------
Telerik.WinControls.Themes.TelerikMetroBlue
    Assembly-Version: 2020.1.218.40.
    Win32-Version: 2020.1.218.40.
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Telerik.WinControls.Themes.TelerikMetroBlue/v4.0_2020.1.218.40__5bb2a467cbec794e/Telerik.WinControls.Themes.TelerikMetroBlue.dll.
----------------------------------------
Telerik.WinControls.Themes.TelerikMetroTouch
    Assembly-Version: 2020.1.218.40.
    Win32-Version: 2020.1.218.40.
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Telerik.WinControls.Themes.TelerikMetroTouch/v4.0_2020.1.218.40__5bb2a467cbec794e/Telerik.WinControls.Themes.TelerikMetroTouch.dll.
----------------------------------------
Telerik.WinControls.Themes.VisualStudio2012Dark
    Assembly-Version: 2020.1.218.40.
    Win32-Version: 2020.1.218.40.
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Telerik.WinControls.Themes.VisualStudio2012Dark/v4.0_2020.1.218.40__5bb2a467cbec794e/Telerik.WinControls.Themes.VisualStudio2012Dark.dll.
----------------------------------------
Telerik.WinControls.Themes.VisualStudio2012Light
    Assembly-Version: 2020.1.218.40.
    Win32-Version: 2020.1.218.40.
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Telerik.WinControls.Themes.VisualStudio2012Light/v4.0_2020.1.218.40__5bb2a467cbec794e/Telerik.WinControls.Themes.VisualStudio2012Light.dll.
----------------------------------------
Telerik.WinControls.Themes.Windows7
    Assembly-Version: 2020.1.218.40.
    Win32-Version: 2020.1.218.40.
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Telerik.WinControls.Themes.Windows7/v4.0_2020.1.218.40__5bb2a467cbec794e/Telerik.WinControls.Themes.Windows7.dll.
----------------------------------------
Telerik.WinControls.Themes.Windows8
    Assembly-Version: 2020.1.218.40.
    Win32-Version: 2020.1.218.40.
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Telerik.WinControls.Themes.Windows8/v4.0_2020.1.218.40__5bb2a467cbec794e/Telerik.WinControls.Themes.Windows8.dll.
----------------------------------------
Telerik.WinControls.Themes.Material
    Assembly-Version: 2020.1.218.40.
    Win32-Version: 2020.1.218.40.
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Telerik.WinControls.Themes.Material/v4.0_2020.1.218.40__5bb2a467cbec794e/Telerik.WinControls.Themes.Material.dll.
----------------------------------------
Telerik.WinControls.Themes.MaterialPink
    Assembly-Version: 2020.1.218.40.
    Win32-Version: 2020.1.218.40.
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Telerik.WinControls.Themes.MaterialPink/v4.0_2020.1.218.40__5bb2a467cbec794e/Telerik.WinControls.Themes.MaterialPink.dll.
----------------------------------------
Telerik.WinControls.Themes.MaterialTeal
    Assembly-Version: 2020.1.218.40.
    Win32-Version: 2020.1.218.40.
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Telerik.WinControls.Themes.MaterialTeal/v4.0_2020.1.218.40__5bb2a467cbec794e/Telerik.WinControls.Themes.MaterialTeal.dll.
----------------------------------------
Telerik.WinControls.Themes.MaterialBlueGrey
    Assembly-Version: 2020.1.218.40.
    Win32-Version: 2020.1.218.40.
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Telerik.WinControls.Themes.MaterialBlueGrey/v4.0_2020.1.218.40__5bb2a467cbec794e/Telerik.WinControls.Themes.MaterialBlueGrey.dll.
----------------------------------------
Telerik.WinControls.Themes.Crystal
    Assembly-Version: 2020.1.218.40.
    Win32-Version: 2020.1.218.40.
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Telerik.WinControls.Themes.Crystal/v4.0_2020.1.218.40__5bb2a467cbec794e/Telerik.WinControls.Themes.Crystal.dll.
----------------------------------------
Telerik.WinControls.Themes.CrystalDark
    Assembly-Version: 2020.1.218.40.
    Win32-Version: 2020.1.218.40.
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Telerik.WinControls.Themes.CrystalDark/v4.0_2020.1.218.40__5bb2a467cbec794e/Telerik.WinControls.Themes.CrystalDark.dll.
----------------------------------------
mscorlib.resources
    Assembly-Version: 4.0.0.0.
    Win32-Version: 4.8.3752.0 built by: NET48REL1.
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/mscorlib.resources/v4.0_4.0.0.0_de_b77a5c561934e089/mscorlib.resources.dll.
----------------------------------------
System.Data
    Assembly-Version: 4.0.0.0.
    Win32-Version: 4.8.4121.0 built by: NET48REL1LAST_C.
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_32/System.Data/v4.0_4.0.0.0__b77a5c561934e089/System.Data.dll.
----------------------------------------
RichTextEditor
    Assembly-Version: 1.0.0.0.
    Win32-Version: 1.0.0.0.
    CodeBase: file:///C:/Program%20Files%20(x86)/Progress/Telerik%20UI%20for%20WinForms%20R1%202020/Examples/RichTextEditor/bin/RichTextEditor.exe.
----------------------------------------
Telerik.WinControls.RichTextEditor
    Assembly-Version: 2020.1.218.40.
    Win32-Version: 2020.1.218.40.
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Telerik.WinControls.RichTextEditor/v4.0_2020.1.218.40__5bb2a467cbec794e/Telerik.WinControls.RichTextEditor.dll.
----------------------------------------
System.ComponentModel.Composition
    Assembly-Version: 4.0.0.0.
    Win32-Version: 4.8.3752.0.
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.ComponentModel.Composition/v4.0_4.0.0.0__b77a5c561934e089/System.ComponentModel.Composition.dll.
----------------------------------------
System.Windows.Forms.resources
    Assembly-Version: 4.0.0.0.
    Win32-Version: 4.8.3752.0 built by: NET48REL1.
    CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms.resources/v4.0_4.0.0.0_de_b77a5c561934e089/System.Windows.Forms.resources.dll.
----------------------------------------
************** JIT-Debuggen **************
Um das JIT-Debuggen (Just-In-Time) zu aktivieren, muss in der
Konfigurationsdatei der Anwendung oder des Computers
(machine.config) der jitDebugging-Wert im Abschnitt system.windows.forms festgelegt werden.
Die Anwendung muss mit aktiviertem Debuggen kompiliert werden.
Completed
Last Updated: 27 Nov 2014 09:10 by Kishore
When you open the color dialog, "Add custom color", "Ok" and "Cancel" buttons are not completely visible. Currently the dialog box can't be re-sized making it hard for the user to use as the button names are not visible so the user can't be sure what is being clicked. See the attached fig.
Completed
Last Updated: 19 Oct 2020 13:33 by ADMIN
Release R3 2020 SP1

Hi,

Font size in ribbon does not change to the font size of custom style. 

 

See attached video and c# project.

Best regards,

Ziping Wang