Class ModernFrame
- Namespace
- HeBianGu.General.WpfControlLib
- Assembly
- HeBianGu.General.WpfControlLib.dll
自定义导航框架
public class ModernFrame : ContentControl, IAnimatable, ISupportInitialize, IFrameworkInputElement, IInputElement, IQueryAmbient, IAddChild
- Inheritance
-
ModernFrame
- Implements
- Inherited Members
- Extension Methods
Constructors
ModernFrame()
Initializes a new instance of the ModernFrame class.
public ModernFrame()
Fields
ContentLoaderProperty
Identifies the ContentLoader dependency property.
public static readonly DependencyProperty ContentLoaderProperty
Field Value
IsLoadingContentProperty
Identifies the IsLoadingContent dependency property.
public static readonly DependencyProperty IsLoadingContentProperty
Field Value
KeepAliveProperty
Identifies the KeepAlive attached dependency property.
public static readonly DependencyProperty KeepAliveProperty
Field Value
KeepContentAliveProperty
Identifies the KeepContentAlive dependency property.
public static readonly DependencyProperty KeepContentAliveProperty
Field Value
SourceProperty
Identifies the Source dependency property.
public static readonly DependencyProperty SourceProperty
Field Value
Properties
ContentLoader
Gets or sets the content loader.
public IContentLoader ContentLoader { get; set; }
Property Value
IsLoadingContent
Gets a value indicating whether this instance is currently loading content.
public bool IsLoadingContent { get; }
Property Value
KeepContentAlive
Gets or sets a value whether content should be kept in memory.
public bool KeepContentAlive { get; set; }
Property Value
Source
Gets or sets the source of the current content.
public Uri Source { get; set; }
Property Value
Methods
GetKeepAlive(DependencyObject)
Gets a value indicating whether to keep specified object alive in a ModernFrame instance.
public static bool? GetKeepAlive(DependencyObject o)
Parameters
o
DependencyObjectThe target dependency object.
Returns
- bool?
Whether to keep the object alive. Null to leave the decision to the ModernFrame.
SetKeepAlive(DependencyObject, bool?)
Sets a value indicating whether to keep specified object alive in a ModernFrame instance.
public static void SetKeepAlive(DependencyObject o, bool? value)
Parameters
o
DependencyObjectThe target dependency object.
value
bool?Whether to keep the object alive. Null to leave the decision to the ModernFrame.
Events
FragmentNavigation
Occurs when navigation to a content fragment begins.
public event EventHandler<FragmentNavigationEventArgs> FragmentNavigation
Event Type
Navigated
Occurs when navigation to new content has completed.
public event EventHandler<NavigationEventArgs> Navigated
Event Type
Navigating
Occurs when a new navigation is requested.
public event EventHandler<NavigatingCancelEventArgs> Navigating
Event Type
Remarks
The navigating event is also raised when a parent frame is navigating. This allows for cancelling parent navigation.
NavigationFailed
Occurs when navigation has failed.
public event EventHandler<NavigationFailedEventArgs> NavigationFailed