Completed
Last Updated: 12 Dec 2017 15:18 by ADMIN
ADMIN
Hristo
Created on: 13 Nov 2017 11:39
Category: RichTextEditor
Type: Bug Report
2
FIX. RichTextEditorRibbbonBar - the drop-down lists do not properly display the font name and size of the current text if the ribbon bar is collapsed
How to reproduce: check the attached project and video

Workaround: create a custom RichTextEditorRibbonBar
Public Class CustomRichTextEditorRibbonBar
    Inherits RichTextEditorRibbonBar

    Protected Overrides Sub HandleFontStylePropertiesOnCurrentEditingStyleChanged()
        If Me.dropDownListFont.BindingContext Is Nothing Then
            Me.dropDownListFont.BindingContext = Me.BindingContext
        End If

        If Me.dropDownListFontSize.BindingContext Is Nothing Then
            Me.dropDownListFontSize.BindingContext = Me.BindingContext
        End If

        MyBase.HandleFontStylePropertiesOnCurrentEditingStyleChanged()
    End Sub

End Class
Attached Files:
0 comments