We upgraded our project to the newest version of telerik UI for WPF. But now no controls are showed in the designer. We use implicit styles. So it shouldn't be a problem with the NoXaml dll's.
I tried to add every source from the theme like that:
<ResourceDictionary Source="/Telerik.Windows.Themes.Office2013;component/Themes/Telerik.Windows.Cloud.Controls.xaml" />
But it do not show anything in the designer. It is always empty.
I also tried to clean the project, then delete the bin and obj folder and rebuild it. Doesn't help.
I tried everything in this post: No Telerik controls in Design view in UI for WPF | Telerik Forums
But same result, nothing helps.
Someone have an idea?
3 Answers, 1 is accepted

The pink part should come with the assembly name. (This way use the theme dll, Don't use implicit style)
< ResourceDictionary Source = "/ Telerik.Windows.Themes.Office2013 ; component / Themes / Telerik.Windows.Controls.xaml" /> < ResourceDictionary Source = "/ Telerik.Windows.Themes.Office2013 ; component / Themes / Telerik.Windows. Controls.GridView.xaml " />
Please try again and check.
< ResourceDictionary Source= "pack : // application : ,,, / YourAssembly; component / Themes / Telerik.Windows.Controls.xaml"/>
assemblyName; Components / Folders / Folders ... /. xaml
Or try passing the component.
I think you are confused. That method is used through the theme dll.
Check out this post for more details.
https://www.telerik.com/forums/how-to-use-the-noxaml-binaries
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="/Telerik.Windows.Themes.Windows8;component/Themes/System.Windows.xaml"/>
<ResourceDictionary Source="/Telerik.Windows.Themes.Windows8;component/Themes/Telerik.Windows.Controls.xaml"/>
<ResourceDictionary Source="/Telerik.Windows.Themes.Windows8;component/Themes/Telerik.Windows.Controls.Navigation.xaml"/>
<ResourceDictionary Source="/Telerik.Windows.Themes.Windows8;component/Themes/Telerik.Windows.Controls.Docking.xaml"/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
I think I am doing exactly the same but instead of Windows8 theme, I use Office2013 Theme. Am I wrong?
Your post uses implicit style, but the ResourceDictionary uses theme dll usage.
Attach a small sample or read the link I gave you.

Helllo.
Have you also defined namespaces on the Window or UserContorl?
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
Read the documentation and follow it step by step.
If you are using MVVM and put the DataContext in Xaml, please set it again in the constructor.
Or, try referring to my example in the previous post. My example sample is implemented in Noxaml implicit style.

Thanks for your help. I have created a test control to show you my cases:
<UserControl x:Class="UserControls.Forms.TestUserControl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition/>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<telerik:RadGridView>
<telerik:RadGridView.Columns>
<telerik:GridViewColumn Header="Hello"></telerik:GridViewColumn>
<telerik:GridViewColumn></telerik:GridViewColumn>
<telerik:GridViewColumn></telerik:GridViewColumn>
</telerik:RadGridView.Columns>
</telerik:RadGridView>
<telerik:RadWatermarkTextBox Grid.Column="1"></telerik:RadWatermarkTextBox>
</Grid>
</UserControl>
And this shows a empty control (after clean, reopening VS, rebuild):
And my app.xaml contains following resources, which are used by RadWatermarkTextbox or RadGridView:
<ResourceDictionary Source="/Telerik.Windows.Themes.Office2013;component/Themes/Telerik.Windows.Controls.xaml" />
<ResourceDictionary Source="/Telerik.Windows.Themes.Office2013;component/Themes/Telerik.Windows.Controls.GridView.xaml" />
<ResourceDictionary Source="/Telerik.Windows.Themes.Office2013;component/Themes/Telerik.Windows.Controls.Input.xaml" />
My project has also a reference to telerik.windows.data, which is used for RadGridView, but isn't in the Theme.
The DataContext is set to the CodeBehind in the constructor.