Method | Description | |
---|---|---|
Add ( this regionCollection, string regionName, IRegion region ) : void |
Adds a region to the regionmanager with the name received as argument.
|
|
AddToRegion ( this regionManager, string regionName, object view ) : IRegionManager |
Add a view to the Views collection of a Region. Note that the region must already exist in this regionmanager.
|
|
RegisterViewWithRegion ( this regionManager, string regionName, Func |
Associate a view with a region, using a delegate to resolve a concreate instance of the view. When the region get's displayed, this delelgate will be called and the result will be added to the views collection of the region.
|
|
RegisterViewWithRegion ( this regionManager, string regionName, |
Associate a view with a region, by registering a type. When the region get's displayed this type will be resolved using the ServiceLocator into a concrete instance. The instance will be added to the Views collection of the region
|
|
RequestNavigate ( this regionManager, string regionName, |
Navigates the specified region manager.
|
|
RequestNavigate ( this regionManager, string regionName, |
Navigates the specified region manager.
|
|
RequestNavigate ( this regionManager, string regionName, string source ) : void |
Navigates the specified region manager.
|
|
RequestNavigate ( this regionManager, string regionName, string source, Action |
Navigates the specified region manager.
|
public static Add ( this regionCollection, string regionName, IRegion region ) : void | ||
regionCollection | this | The regionmanager's collection of regions. |
regionName | string | The name to be given to the region. |
region | IRegion | The region to be added to the regionmanager. |
return | void |
public static AddToRegion ( this regionManager, string regionName, object view ) : IRegionManager | ||
regionManager | this | The regionmanager that this extension method effects. |
regionName | string | The name of the region to add a view to |
view | object | The view to add to the views collection |
return | IRegionManager |
public static RegisterViewWithRegion ( this regionManager, string regionName, Func | ||
regionManager | this | The regionmanager that this extension method effects. |
regionName | string | The name of the region to associate the view with. |
getContentDelegate | Func | The delegate used to resolve a concreate instance of the view. |
return | IRegionManager |
public static RegisterViewWithRegion ( this regionManager, string regionName, |
||
regionManager | this | The regionmanager that this extension method effects. |
regionName | string | The name of the region to associate the view with. |
viewType | The type of the view to register with the | |
return | IRegionManager |
public static RequestNavigate ( this regionManager, string regionName, |
||
regionManager | this | The regionmanager that this extension method effects. |
regionName | string | The name of the region to call Navigate on. |
source | The URI of the content to display. | |
return | void |
public static RequestNavigate ( this regionManager, string regionName, |
||
regionManager | this | The regionmanager that this extension method effects. |
regionName | string | The name of the region to call Navigate on. |
source | The URI of the content to display. | |
navigationCallback | Action |
The navigation callback. |
return | void |
public static RequestNavigate ( this regionManager, string regionName, string source ) : void | ||
regionManager | this | The regionmanager that this extension method effects. |
regionName | string | The name of the region to call Navigate on. |
source | string | The URI of the content to display. |
return | void |
public static RequestNavigate ( this regionManager, string regionName, string source, Action |
||
regionManager | this | The regionmanager that this extension method effects. |
regionName | string | The name of the region to call Navigate on. |
source | string | The URI of the content to display. |
navigationCallback | Action |
The navigation callback. |
return | void |