Method | Description | |
---|---|---|
Activate ( object view ) : void |
Marks the specified view as active.
|
|
Add ( object view ) : IRegionManager |
Adds a new view to the region.
|
|
Add ( object view, string viewName ) : IRegionManager |
Adds a new view to the region.
|
|
Add ( object view, string viewName, bool createRegionManagerScope ) : IRegionManager |
Adds a new view to the region.
|
|
Deactivate ( object view ) : void |
Marks the specified view as inactive.
|
|
GetView ( string viewName ) : object |
Returns the view instance that was added to the region using a specific name.
|
|
Region ( ) : System |
Initializes a new instance of Region.
|
|
Remove ( object view ) : void |
Removes the specified view from the region.
|
|
RequestNavigate ( |
Initiates navigation to the specified target.
|
Method | Description | |
---|---|---|
DefaultSortComparison ( object x, object y ) : int | ||
GetItemMetadataOrThrow ( object view ) : |
||
InnerAdd ( object view, string viewName, IRegionManager scopedRegionManager ) : void | ||
OnPropertyChanged ( string propertyName ) : void | ||
ViewSortHintAttributeComparison ( |
public Activate ( object view ) : void | ||
view | object | The view to activate. |
return | void |
public Add ( object view ) : IRegionManager | ||
view | object | The view to add. |
return | IRegionManager |
public Add ( object view, string viewName ) : IRegionManager | ||
view | object | The view to add. |
viewName | string | The name of the view. This can be used to retrieve it later by calling |
return | IRegionManager |
public Add ( object view, string viewName, bool createRegionManagerScope ) : IRegionManager | ||
view | object | The view to add. |
viewName | string | The name of the view. This can be used to retrieve it later by calling |
createRegionManagerScope | bool | When |
return | IRegionManager |
public Deactivate ( object view ) : void | ||
view | object | The view to deactivate. |
return | void |
public GetView ( string viewName ) : object | ||
viewName | string | The name used when adding the view to the region. |
return | object |
public Remove ( object view ) : void | ||
view | object | The view to remove. |
return | void |
public RequestNavigate ( |
||
target | The target. | |
navigationCallback | Action |
A callback to execute when the navigation request is completed. |
return | void |