I'm using this XAML in a small demo application.
The RadWizard is not showing up at all with Telerik version 2015.2.728.40, but works fine with version 2015.1.420.45.
I got the xaml from http://docs.telerik.com/devtools/wpf/controls/radwizard/getting-started
I'm trying to figure out *why* this isn't working.
<Window x:Class="Test.Shell"
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:telerik="http://schemas.telerik.com/2008/xaml/presentation"
mc:Ignorable="d"
xmlns:csc="clr-namespace:ClientSignatureCapture.Views;assembly=ClientSignatureCapture"
Title="Shell" Height="700" Width="700">
<Grid>
<telerik:RadWizard x:Name="radWizard" >
<telerik:RadWizard.WizardPages>
<telerik:WizardPage Content="My Wizard Page Content" />
</telerik:RadWizard.WizardPages>
</telerik:RadWizard>
</Grid>
</Window>