I am using a RichEditBox in a UWP application, and I need to enable and disable it in the software to perform some tasks. The issue I am running into is that when I disable, then re-enable it, any color formatting gets lost. I have created a simple example here, to try out the issue. You can type some text, color it in red, then disable and re-enable. The color gets reverted to black.
XAML
<StackPanel>
<StackPanel Orientation="Horizontal">
<Button Content="Disable" Click="OnDisable"/>
<Button Content="Enable" Click="OnEnable"/>
<Button Content="Red" Click="OnRed"/>
</StackPanel>
<RichEditBox Name="RichEditor" Width="500" Height="200"/>
</StackPanel>
C#
private void OnDisable(object sender, RoutedEventArgs e)
{
RichEditor.IsEnabled = false;
}
private void OnEnable(object sender, RoutedEventArgs e)
{
RichEditor.IsEnabled = true;
}
private void OnRed(object sender, RoutedEventArgs e)
{
RichEditor.Document.Selection.CharacterFormat.ForegroundColor = Colors.Red;
}
This looks like a bug in the RichEditBox component, and I am wondering if anyone has a workaround to allow me to enable and disable the text without losing the color formatting. Below the example to reproduce the issue.
See the Control style and template part in the RichEditBox Class:
So you can find the default style for System.Windows.Controls.RichEditBox control, here is the default style target on version 1803:
From above style, you can see the
Disabled
VisualState code:In this
Disabled
VisualState, you can find that theContentElement
'sForeground
will beThemeResource TextControlForegroundDisabled
when you disable the RichEditBox. Since the text'sForeground
has been changed when you disable the RichEditBox, you lose the color format.You can keep the color format by deleting the code of changing the
ContentElement
'sForeground
as the following Disabled VisualState: