Show / Hide Table of Contents

Interface IRegionManager

Defines an interface to manage a set of regions and to attach regions to objects (typically controls).

Namespace: Sartorius.SAF.Presentation.Regions
Assembly: Sartorius.SAF.Presentation.dll
Syntax
public interface IRegionManager

Properties

View Source

Regions

Gets a collection of IRegion that identify each region by name. You can use this collection to add or remove regions to the current region manager.

Declaration
IRegionCollection Regions { get; }
Property Value
Type Description
IRegionCollection

Methods

View Source

CreateRegionManager()

Creates a new region manager.

Declaration
IRegionManager CreateRegionManager()
Returns
Type Description
IRegionManager

A new region manager that can be used as a different scope from the current region manager.

Extension Methods

CollectionExtensions.AddRange<T, TCollection>(TCollection, IEnumerable<T>)
SerializableObjectCloneExtension.Clone<T>(T)
RegionManagerExtensions.AttachNewRegion(IRegionManager, DependencyObject, string)
RegionManagerExtensions.RegisterViewWithRegion(IRegionManager, string, Func<object>)
RegionManagerExtensions.RegisterViewWithRegion(IRegionManager, string, Type)
RegionManagerExtensions.RegisterViewWithRegion<TView, TViewModel>(IRegionManager, string)
RegionManagerExtensions.RequestNavigate(IRegionManager, string, string)
RegionManagerExtensions.RequestNavigate(IRegionManager, string, string, Action<NavigationResult>)
RegionManagerExtensions.RequestNavigate(IRegionManager, string, Uri)
RegionManagerExtensions.RequestNavigate(IRegionManager, string, Uri, Action<NavigationResult>)
RegionManagerExtensions.RequestNavigate<T>(IRegionManager, string)
RegionManagerExtensions.RequestNavigate<T>(IRegionManager, string, Action<NavigationResult>)
  • View Source
Back to top Generated by DocFX