C# Class Catel.Windows.Controls.UserControl.UserControl

Inheritance: System.Windows.Controls.UserControl, IUserControl
Afficher le fichier Open project: Catel/Catel

Méthodes publiques

Méthode Description
UserControl ( ) : System

Initializes a new instance of the UserControl class.

This method is required for design time support.

UserControl ( IViewModel viewModel ) : System

Initializes a new instance of the UserControl class.

Méthodes protégées

Méthode Description
OnLoaded ( global::Windows.UI.Xaml.RoutedEventArgs e ) : void

Called when the user control 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 user control 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.

OnViewModelClosedAsync ( object sender, ViewModelClosedEventArgs e ) : System.Threading.Tasks.Task

Called when the ViewModel has been closed.

OnViewModelPropertyChanged ( PropertyChangedEventArgs e ) : void

Called when a property on the current ViewModel has changed.

Private Methods

Méthode Description
OnViewModelClosed ( object sender, ViewModelClosedEventArgs e ) : void
RaiseViewModelChanged ( ) : void

Method Details

OnLoaded() protected méthode

Called when the user control is loaded.
protected OnLoaded ( global::Windows.UI.Xaml.RoutedEventArgs e ) : void
e global::Windows.UI.Xaml.RoutedEventArgs The instance containing the event data.
Résultat void

OnPropertyChanged() protected méthode

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.
Résultat void

OnUnloaded() protected méthode

Called when the user control is unloaded.
protected OnUnloaded ( global::Windows.UI.Xaml.RoutedEventArgs e ) : void
e global::Windows.UI.Xaml.RoutedEventArgs The instance containing the event data.
Résultat void

OnViewModelChanged() protected méthode

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
Résultat void

OnViewModelClosedAsync() protected méthode

Called when the ViewModel has been closed.
protected OnViewModelClosedAsync ( object sender, ViewModelClosedEventArgs e ) : System.Threading.Tasks.Task
sender object The sender.
e ViewModelClosedEventArgs The instance containing the event data.
Résultat System.Threading.Tasks.Task

OnViewModelPropertyChanged() protected méthode

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.
Résultat void

UserControl() public méthode

Initializes a new instance of the UserControl class.
This method is required for design time support.
public UserControl ( ) : System
Résultat System

UserControl() public méthode

Initializes a new instance of the UserControl class.
public UserControl ( IViewModel viewModel ) : System
viewModel IViewModel The view model.
Résultat System