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

Possible to view WizardPages which are in the same window?

2 Answers 63 Views
Wizard
This is a migrated thread and some comments may be shown as answers.
live cooking demonstration
Top achievements
Rank 1
live cooking demonstration asked on 30 May 2017, 06:02 AM

I want to be able to switch the design view from wizardpage to wizardpage. Currently It will only display the first wizardpage entered in the xaml view.

Is this currently possible? If not I guess the alternative would be to make a new page.xaml for every telerik:wizardpage then override the default navigation somehow. I could use some help finding a solution.

<telerik:RadWizard x:Name="radWizard">         <telerik:RadWizard.WizardPages>             <telerik:WizardPage Name="DeployTargetPage">                 <telerik:WizardPage.Content>                   <Grid>                         <TextBlock Width="80" Height="20" Margin="35,51,387.4,207.4" >Deploy target</TextBlock>                         <ComboBox  Width="100" Height="20" Margin="35,76,367.4,182.4" >                             <ComboBoxItem Selected="LocalDeploySelected">Local host</ComboBoxItem>                             <ComboBoxItem Selected="AzureDeploySelected">Azure</ComboBoxItem>                         </ComboBox>                     </Grid>                 </telerik:WizardPage.Content>             </telerik:WizardPage>             <telerik:WizardPage Name="SetParametersPage">                 <telerik:WizardPage.Content>                     <Grid>                         <TextBlock Width="100" Height="20" >Site name</TextBlock>                         <ListBox Grid.Column="0" Height="20" />                         <TextBlock Width="100" Height="20" >Publish link</TextBlock>                         <ListBox Height="20" />                         <TextBlock Width="100" Height="20" >User name</TextBlock>                         <ListBox Height="20" />                         <TextBlock Width="100" Height="20" >Password</TextBlock>                         <ListBox Height="20" />                     </Grid>                 </telerik:WizardPage.Content>             </telerik:WizardPage>

2 Answers, 1 is accepted

Sort by
0
live cooking demonstration
Top achievements
Rank 1
answered on 30 May 2017, 06:06 AM
Hmm formattings not great on that code; I wish I could edit! :[
0
live cooking demonstration
Top achievements
Rank 1
answered on 31 May 2017, 04:48 AM
Never mind I found the answer: http://www.telerik.com/forums/question-about-wizardpages-in-xaml-designer
Tags
Wizard
Asked by
live cooking demonstration
Top achievements
Rank 1
Answers by
live cooking demonstration
Top achievements
Rank 1
Share this question
or