设置 AllowTransparency="False" 时,Telerik Radwindow 渲染不完整

Telerik Radwindow render incompletely when setting AllowTransparency="False"

我有一个关于 radwindow 渲染的问题。

当我设置 AllowTransparency="False" 和 ShowInTaskbar="True" 时, 我通过单击任务栏图标切换 window,window 只是呈现 Windows 标题和其他部分被隐藏。我必须拖动它或调整它的大小才能恢复。

完整window: 不完整window:

所以如果我设置 AllowTransparency = True 会解决它,但是 windows 拖动它时会变慢。

telerik版本为2019.3.1023.300,dotnet版本:3.1,windowsOS:windown 10 1903

RadWindow 代码:

<telerik:RadWindow x:Class="TelerikTest.MainWindow"
                   xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                   xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
                   xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
                   xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
                   xmlns:local="clr-namespace:TelerikTest"
                   xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
                   xmlns:navigation="clr-namespace:Telerik.Windows.Controls.Navigation;assembly=Telerik.Windows.Controls.Navigation"
                   mc:Ignorable="d"
                   Width="1024"
                   Height="768"
                   MinWidth="800"
                   MinHeight="600"
                   WindowStartupLocation="CenterScreen"
                   navigation:RadWindowInteropHelper.AllowTransparency="False"
                   navigation:RadWindowInteropHelper.ShowInTaskbar="True"
                   >
    <telerik:RadWindow.Resources>
        <ResourceDictionary>
            <ResourceDictionary.MergedDictionaries>
                <ResourceDictionary Source="/Telerik.Windows.Themes.Fluent;component/Themes/System.Windows.xaml" />
                <ResourceDictionary
                    Source="/Telerik.Windows.Themes.Fluent;component/Themes/Telerik.Windows.Controls.Navigation.xaml" />
            </ResourceDictionary.MergedDictionaries>
        </ResourceDictionary>
    </telerik:RadWindow.Resources>

    <telerik:RadWindow.Style>
        <StaticResource ResourceKey="RadWindowStyle" />
    </telerik:RadWindow.Style>
    <Grid>

    </Grid>
</telerik:RadWindow>

这是 RadWindow 控件中的错误。它未在发行说明中标记,但已通过 Telerik UI 的 R1 2020 版 WPF(版本 2020.1.115)修复。