Table of Contents

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

DependencyProperty

IsLoadingContentProperty

Identifies the IsLoadingContent dependency property.

public static readonly DependencyProperty IsLoadingContentProperty

Field Value

DependencyProperty

KeepAliveProperty

Identifies the KeepAlive attached dependency property.

public static readonly DependencyProperty KeepAliveProperty

Field Value

DependencyProperty

KeepContentAliveProperty

Identifies the KeepContentAlive dependency property.

public static readonly DependencyProperty KeepContentAliveProperty

Field Value

DependencyProperty

SourceProperty

Identifies the Source dependency property.

public static readonly DependencyProperty SourceProperty

Field Value

DependencyProperty

Properties

ContentLoader

Gets or sets the content loader.

public IContentLoader ContentLoader { get; set; }

Property Value

IContentLoader

IsLoadingContent

Gets a value indicating whether this instance is currently loading content.

public bool IsLoadingContent { get; }

Property Value

bool

KeepContentAlive

Gets or sets a value whether content should be kept in memory.

public bool KeepContentAlive { get; set; }

Property Value

bool

Source

Gets or sets the source of the current content.

public Uri Source { get; set; }

Property Value

Uri

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 DependencyObject

The 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 DependencyObject

The 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

EventHandler<FragmentNavigationEventArgs>

Navigated

Occurs when navigation to new content has completed.

public event EventHandler<NavigationEventArgs> Navigated

Event Type

EventHandler<NavigationEventArgs>

Navigating

Occurs when a new navigation is requested.

public event EventHandler<NavigatingCancelEventArgs> Navigating

Event Type

EventHandler<NavigatingCancelEventArgs>

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

Event Type

EventHandler<NavigationFailedEventArgs>