C# Class Microsoft.Practices.Prism.Regions.RegionAdapterMappings

This class maps Type with IRegionAdapter.
Show file Open project: xperiandri/PortablePrism Class Usage Examples

Public Methods

Method Description
RegisterMapping ( Type controlType, IRegionAdapter adapter ) : void

Registers the mapping between a type and an adapter.

Private Methods

Method Description
GetMapping ( Type controlType ) : IRegionAdapter

Method Details

RegisterMapping() public method

Registers the mapping between a type and an adapter.
When any of or are . If a mapping for already exists.
public RegisterMapping ( Type controlType, IRegionAdapter adapter ) : void
controlType System.Type The type of the control.
adapter IRegionAdapter The adapter to use with the type.
return void