windows 10 WPF .Net Core 3.1 Telerik 2020 R3 Sp1:
<Window x:Class="DemoAll.Modules.Telerik.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
Title="MainWindow" Height="350" Width="525">
<Grid>
<telerik:RadButton x:Name="btTest" Content="test" Height="60" Width="120"></telerik:RadButton>
</Grid>
</Window>
error:
SeverityCodeDescriptionProjectFileLineSuppression State
ErrorCS0234The type or namespace name 'Windows' does not exist in the namespace 'XXXXX' (are you missing an assembly reference?)
==========================================================================
no x:Name="btTest"
<Grid>
<telerik:RadButton Content="test" Height="60" Width="120"></telerik:RadButton>
</Grid>
is ok!!!