Completed
Last Updated: 15 Aug 2023 13:39 by ADMIN
Release LIB 2023.2.821 (21 Aug 2023)
Stenly
Created on: 13 Jul 2023 14:29
Category: Docking
Type: Bug Report
1
Docking: Placing RadPaneGroup instances in a SplitContainer with Orientation="Vertical" causes flicker when resizing a RadPaneGroup with the ShowResizePreview="False" with the VisualStudio2019 theme

When a RadSplitContainer with Orientation="Vertical" contains RadPaneGroup instances, resizing them causes a flicker when the ShowResizePreview property is set to False. This happens with the VisualStudio2019 theme.

For the time being, a possible workaround is to create a global Style with TargetType="RadPaneGroup" and set the Margin property to "0":

<Style TargetType="telerik:RadPaneGroup" BasedOn="{StaticResource RadPaneGroupStyle}">
    <Setter Property="Margin" Value="0"/>
</Style>

0 comments