C# Class Catel.Windows.Controls.Page.Page

Inheritance: System.Windows.Controls.Page, IPage
Mostra file Open project: Catel/Catel

Public Methods

Method Description
Page ( ) : System

Initializes a new instance of the Page class.

It is not possible to inject view models.

Protected Methods

Method Description
OnLoaded ( global::Windows.UI.Xaml.RoutedEventArgs e ) : void

Called when the page is loaded.

OnPropertyChanged ( PropertyChangedEventArgs e ) : void

Called when a dependency property on this control has changed.

OnUnloaded ( global::Windows.UI.Xaml.RoutedEventArgs e ) : void

Called when the page is unloaded.

OnViewModelChanged ( ) : void

Called when the ViewModel has changed.

This method does not implement any logic and saves a developer from subscribing/unsubscribing to the ViewModelChanged event inside the same user control.

OnViewModelPropertyChanged ( PropertyChangedEventArgs e ) : void

Called when a property on the current ViewModel has changed.

Private Methods

Method Description
RaiseViewModelChanged ( ) : void

Method Details

OnLoaded() protected method

Called when the page is loaded.
protected OnLoaded ( global::Windows.UI.Xaml.RoutedEventArgs e ) : void
e global::Windows.UI.Xaml.RoutedEventArgs The instance containing the event data.
return void

OnPropertyChanged() protected method

Called when a dependency property on this control has changed.
protected OnPropertyChanged ( PropertyChangedEventArgs e ) : void
e System.ComponentModel.PropertyChangedEventArgs The instance containing the event data.
return void

OnUnloaded() protected method

Called when the page is unloaded.
protected OnUnloaded ( global::Windows.UI.Xaml.RoutedEventArgs e ) : void
e global::Windows.UI.Xaml.RoutedEventArgs The instance containing the event data.
return void

OnViewModelChanged() protected method

Called when the ViewModel has changed.
This method does not implement any logic and saves a developer from subscribing/unsubscribing to the ViewModelChanged event inside the same user control.
protected OnViewModelChanged ( ) : void
return void

OnViewModelPropertyChanged() protected method

Called when a property on the current ViewModel has changed.
protected OnViewModelPropertyChanged ( PropertyChangedEventArgs e ) : void
e System.ComponentModel.PropertyChangedEventArgs The instance containing the event data.
return void

Page() public method

Initializes a new instance of the Page class.
It is not possible to inject view models.
public Page ( ) : System
return System