Interface IContent
- Namespace
- HeBianGu.General.WpfControlLib
- Assembly
- HeBianGu.General.WpfControlLib.dll
Defines the optional contract for content loaded in a ModernFrame.
public interface IContent
- Extension Methods
Methods
OnFragmentNavigation(FragmentNavigationEventArgs)
Called when navigation to a content fragment begins.
void OnFragmentNavigation(FragmentNavigationEventArgs e)
Parameters
e
FragmentNavigationEventArgsAn object that contains the navigation data.
OnNavigatedFrom(NavigationEventArgs)
Called when this instance is no longer the active content in a frame.
void OnNavigatedFrom(NavigationEventArgs e)
Parameters
e
NavigationEventArgsAn object that contains the navigation data.
OnNavigatedTo(NavigationEventArgs)
Called when a this instance becomes the active content in a frame.
void OnNavigatedTo(NavigationEventArgs e)
Parameters
e
NavigationEventArgsAn object that contains the navigation data.
OnNavigatingFrom(NavigatingCancelEventArgs)
Called just before this instance is no longer the active content in a frame.
void OnNavigatingFrom(NavigatingCancelEventArgs e)
Parameters
e
NavigatingCancelEventArgsAn object that contains the navigation data.
Remarks
The method is also invoked when parent frames are about to navigate.