This is a migrated thread and some comments may be shown as answers.

RadWizard control is non functional

4 Answers 86 Views
Wizard
This is a migrated thread and some comments may be shown as answers.
Richard
Top achievements
Rank 1
Richard asked on 08 Sep 2016, 01:45 PM

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>

4 Answers, 1 is accepted

Sort by
0
Dilyan Traykov
Telerik team
answered on 09 Sep 2016, 12:24 PM
Hello Richard,

Could you please clarify whether you're using the XAML or NoXaml binaries in your project? Such issue can occur if you're referencing the Telerik NoXaml binaries, but have not merged the needed files as described in the implicit styles article.

Adding the following lines to your App.xaml file should make RadWizard appear:

<Application.Resources>
    <ResourceDictionary>
        <ResourceDictionary.MergedDictionaries>
            <ResourceDictionary Source="/Telerik.Windows.Themes.Office_Black;component/Themes/System.Windows.xaml"/>
            <ResourceDictionary Source="/Telerik.Windows.Themes.Office_Black;component/Themes/Telerik.Windows.Controls.xaml"/>
            <ResourceDictionary Source="/Telerik.Windows.Themes.Office_Black;component/Themes/Telerik.Windows.Controls.Navigation.xaml"/>
        </ResourceDictionary.MergedDictionaries>
    </ResourceDictionary>
</Application.Resources>

Note that I've used the Office_Black theme for this example, but you can change this to any of the other available themes.

Please let me know if this solves your issue.

Regards,
Dilyan Traykov
Telerik by Progress
Do you need help with upgrading your AJAX, WPF or WinForms project? Check the Telerik API Analyzer and share your thoughts.
0
Susmitha
Top achievements
Rank 1
Veteran
Iron
answered on 03 Jun 2020, 10:02 AM

Hi Dilyan ,

 

I am using an older version of Telerik (2013.2.724.40), Is "RadWizard" available in this version?

 

Thanks & Regards

Susmitha

0
Martin Ivanov
Telerik team
answered on 04 Jun 2020, 05:19 AM

Hello Susmitha,

The RadWizard control is available since UI for WPF Q1 2015.

Regards,
Martin Ivanov
Progress Telerik

Progress is here for your business, like always. Read more about the measures we are taking to ensure business continuity and help fight the COVID-19 pandemic.
Our thoughts here at Progress are with those affected by the outbreak.
0
Susmitha
Top achievements
Rank 1
Veteran
Iron
answered on 04 Jun 2020, 05:22 AM

Thank you Martin for the quick reply.

 

Susmitha

Tags
Wizard
Asked by
Richard
Top achievements
Rank 1
Answers by
Dilyan Traykov
Telerik team
Susmitha
Top achievements
Rank 1
Veteran
Iron
Martin Ivanov
Telerik team
Share this question
or