WizardPageViewModel
Class
Represents the view model for a page in the wizard control.
Definition
Namespace:Telerik.Windows.Controls.Wizard
Assembly:Telerik.Windows.Controls.Navigation.dll
Syntax:
C#
public class WizardPageViewModel : INotifyPropertyChanged
Inheritance: objectWizardPageViewModel
Implements:
Constructors
C#
public WizardPageViewModel()
Properties
Gets or sets the cancel button content.
C#
public object CancelButtonContent { get; set; }
The cancel button content.
Gets or sets the finish button content.
C#
public object FinishButtonContent { get; set; }
The finish button content.
Gets or sets the help button content.
C#
public object HelpButtonContent { get; set; }
The help button content.
Gets the WizardPage buttons visibility.
C#
public NavigationButtonsVisibilityModel NavigationButtonsVisibility { get; set; }
The WizardPage buttons visibility.
Gets or sets the next button content.
C#
public object NextButtonContent { get; set; }
The next button content.
Gets or sets the previous button content.
C#
public object PreviousButtonContent { get; set; }
The previous button content.
Methods
Called when [property changed].
C#
protected void OnPropertyChanged(string propertyName)
Name of the property that has been changed.
Events
Occurs when a property value changes.
C#
public event PropertyChangedEventHandler PropertyChanged
Implements: