Completed
Last Updated: 14 Feb 2022 08:13 by ADMIN
Release LIB 2022.1.214 (14 Feb 2022)
Michael Tissington
Created on: 20 Oct 2021 10:45
Category: RichTextBox
Type: Bug Report
1
RichTextBox: NumericUpDown controls in dialogs disappear when defining an implicit style

Some dialogs like ParagraphPropertiesDialog and SectionColumnsDialog have dependency properties for defining the width of the numerics. When creating implicit style, the value of these custom properties results in 0 and they are invisible in the UI.

Workaround: Set the value of the property in the custom style. For paragraph properties dialog:

<Style TargetType="rtb:RadParagraphPropertiesDialog" BasedOn="{StaticResource CustomStyle}" >
    <Setter Property="NumericWidth" Value="85"/>
</Style>

0 comments