C# Class FirstFloor.ModernUI.Windows.Navigation.DefaultLinkNavigator

The default link navigator with support for loading frame content, external link navigation using the default browser and command execution.
Inheritance: ILinkNavigator
显示文件 Open project: gro-ove/actools Class Usage Examples

Public Methods

Method Description
DefaultLinkNavigator ( ) : System

Initializes a new instance of the DefaultLinkNavigator class.

Navigate ( Uri uri, FrameworkElement source = null, string parameter = null ) : void

Performs navigation to specified link.

Method Details

DefaultLinkNavigator() public method

Initializes a new instance of the DefaultLinkNavigator class.
public DefaultLinkNavigator ( ) : System
return System

Navigate() public method

Performs navigation to specified link.
public Navigate ( Uri uri, FrameworkElement source = null, string parameter = null ) : void
uri System.Uri The uri to navigate to.
source System.Windows.FrameworkElement The source element that triggers the navigation. Required for frame navigation.
parameter string An optional command parameter or navigation target.
return void