Hello everybody,
i am using version 19.3.0.44 DockingManager which contains for example a SfDataGrid with the Office2019Black theme.
When the scrollbar is getting right-clicked the app throw a exception:

Implementation:
<controls:SfChromelessWindow x:Class="SynfusionDataGridScrollbarException.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:SynfusionDataGridScrollbarException"
xmlns:controls="clr-namespace:Syncfusion.Windows.Controls;assembly=Syncfusion.SfChromelessWindow.Wpf"
xmlns:syncfusion="http://schemas.syncfusion.com/wpf"
syncfusion:SfSkinManager.Theme="{syncfusion:SkinManagerExtension ThemeName=Office2019Black}"
mc:Ignorable="d"
Title="MainWindow" Height="450" Width="800">
<Grid>
<syncfusion:DockingManager
x:Name="MainDockingManager1"
DockFill="True"
UseDocumentContainer="False">
<ContentControl>
<syncfusion:SfDataGrid ItemsSource="{Binding}"/>
</ContentControl>
</syncfusion:DockingManager>
</Grid>
</controls:SfChromelessWindow>
Thanks in advance!
Andreas