Hello,
I'm developing a new app using telerik radwizard, using the example found at
https://docs.telerik.com/devtools/wpf/controls/radwizard/features/pages
However, when i try to run my application, i get an empty window:
I don't know what I'm doing wrong, can someone help me?
Source code bellow:
<Window x:Class="MainWindow.MainWindow"                xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"                xmlns:wizard="clr-namespace:Telerik.Windows.Controls.Wizard assembly=Telerik.Windows.Controls.Navigation"                Title="MainWindow"                WindowState="Normal"                WindowStartupLocation="CenterScreen"                WindowStyle="None"                Background="#dee3e9">    <telerik:RadWizard x:Name="radWizard" >        <telerik:RadWizard.WizardPages>            <telerik:WizardPage Content="My Wizard Page Content" SideHeaderWidth="100" HeaderHeight="100">                <telerik:WizardPage.HeaderTemplate>                    <DataTemplate>                       <Image Source="Images/BrandMark_Telerik_Black.png" Width="200" Height="100" />                    </DataTemplate>                </telerik:WizardPage.HeaderTemplate>                <telerik:WizardPage.SideHeaderTemplate>                    <DataTemplate>                        <TextBlock Text="My Side Header" />                    </DataTemplate>                </telerik:WizardPage.SideHeaderTemplate>                <telerik:WizardPage.FooterTemplate>                    <DataTemplate>                        <StackPanel Orientation="Horizontal">                            <telerik:RadButton Content="Back"                                               Width="70" Height="25"                                               Command="wizard:RadWizardCommands.MoveCurrentToPrevious"                                                CommandParameter="{Binding}" />                            <telerik:RadButton Content="Next" Width="70" Height="25"                                               Command="wizard:RadWizardCommands.MoveCurrentToNext"                                               CommandParameter="{Binding}" />                        </StackPanel>                    </DataTemplate>                </telerik:WizardPage.FooterTemplate>            </telerik:WizardPage>        </telerik:RadWizard.WizardPages>    </telerik:RadWizard></Window>
