Table of Contents

Class NavigationAware

Namespace
Wpf.Ui.Abstractions.Controls
Assembly
Wpf.Ui.Abstractions.dll

Provides a base class for navigation-aware components.

public abstract class NavigationAware : INavigationAware
Inheritance
NavigationAware
Implements
Inherited Members

Methods

OnNavigatedFrom()

Handles the event that is fired before the component is navigated from.

public virtual void OnNavigatedFrom()

OnNavigatedFromAsync()

Asynchronously handles the event that is fired before the component is navigated from.

public virtual Task OnNavigatedFromAsync()

Returns

Task

A task that represents the asynchronous operation.

OnNavigatedTo()

Handles the event that is fired after the component is navigated to.

public virtual void OnNavigatedTo()

OnNavigatedToAsync()

Asynchronously handles the event that is fired after the component is navigated to.

public virtual Task OnNavigatedToAsync()

Returns

Task

A task that represents the asynchronous operation.