Dear support
From the documentation I do not understand how to apply themes to Native Controls. Currently the theming works on Syncfusion controls, but not on the native controls. What I have to do, to apply the theme also on native controls.
Border has a Custom Style. It is not a syncfusion control, so what has it to be based on?
<Style TargetType="Border" BasedOn="{StaticResource ???}">
<Setter Property="Background" Value="GhostWhite" />
<Setter Property="BorderBrush" Value="Silver" />
<Setter Property="BorderThickness" Value="1" />
<Setter Property="CornerRadius" Value="2" />
</Style>
<Border Grid.Column="0" Grid.Row="1">
<ListView x:Name="BodyDocsListView"
SelectionMode="Single"
ItemsSource="{Binding BodyDocs}"
SelectedItem="{Binding SelectedBodyDoc}"
SelectionChanged="BodyDocsListView_OnSelectionChanged"
MouseDoubleClick="BodyDocsListView_OnMouseDoubleClick">
<ListView.View>
<GridView>
<GridViewColumn Width="{Binding ElementName=BodyDocsListView, Path=ActualWidth}"
DisplayMemberBinding="{Binding Title}" />
</GridView>
</ListView.View>
</ListView>
</Border>