在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → WPF Prism框架.rar

WPF Prism框架.rar

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:19.50M
  • 下载次数:44
  • 浏览次数:237
  • 发布时间:2021-11-20
  • 实例类别:一般编程问题
  • 发 布 人:js2021
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
很漂亮的界面,内含各种控件的样式及模板,下载把
【实例截图】
【核心代码】
16359647273217649843.rar
└── Prism
├── AcceptanceTestLibrary
│   ├── AcceptanceTestLibrary
│   │   ├── AcceptanceTestLibrary.csproj
│   │   ├── ApplicationHelper
│   │   │   ├── ConfigHandler.cs
│   │   │   ├── ResXConfigHandler.cs
│   │   │   └── UIAExtensions.cs
│   │   ├── ApplicationObserver
│   │   │   ├── IStateObserver.cs
│   │   │   └── StateDiagnosis.cs
│   │   ├── Common
│   │   │   ├── FixtureBase.cs
│   │   │   └── Launcher
│   │   │   ├── AppLauncherBase.cs
│   │   │   └── Desktop
│   │   │   └── WpfAppLauncher.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── TestEntityBase
│   │   │   └── Page
│   │   │   └── PageBase.cs
│   │   └── UIAWrapper
│   │   ├── ExpandCollapsePatternExtensions.cs
│   │   ├── InvokePatternExtensions.cs
│   │   ├── MouseEvents.cs
│   │   ├── SelectPatternExtensions.cs
│   │   ├── TogglePatternExtensions.cs
│   │   └── ValuePatternExtensions.cs
│   └── AcceptanceTestLibrary.sln
├── License.txt
├── Open Modularity With Mef QuickStart.lnk
├── Open Modularity With Unity QuickStart.lnk
├── Open QS - Basic MVVM QuickStart.lnk
├── Open QS - Commanding QuickStart.lnk
├── Open QS - EventAggregator QuickStart.lnk
├── Open QS - Hello World QuickStart.lnk
├── Open QS - Interactivity QuickStart.lnk
├── Open QS - State-Based Navigation QuickStart.lnk
├── Open QS - UI Composition.lnk
├── Open QS - View-Switching Navigation.lnk
├── Open RI - StockTrader Reference Implementation.lnk
├── Prism5ClassLibrary.chm
├── PrismLibrary
│   ├── Common
│   │   └── CommonAssemblyInfo.cs
│   ├── Desktop
│   │   ├── MefModulesForTesting
│   │   │   ├── MefModuleOne.cs
│   │   │   ├── MefModulesForTesting.csproj
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Prism
│   │   │   ├── Bootstrapper.cs
│   │   │   ├── CollectionExtensions.cs
│   │   │   ├── Events
│   │   │   │   ├── CompositePresentationEvent.cs
│   │   │   │   ├── DefaultDispatcher.Desktop.cs
│   │   │   │   ├── DispatcherEventSubscription.cs
│   │   │   │   └── IDispatcherFacade.cs
│   │   │   ├── ExceptionExtensions.cs
│   │   │   ├── GlobalSuppressions.cs
│   │   │   ├── ListDictionary.cs
│   │   │   ├── Logging
│   │   │   │   ├── Category.cs
│   │   │   │   ├── EmptyLogger.cs
│   │   │   │   ├── ILoggerFacade.cs
│   │   │   │   ├── Priority.cs
│   │   │   │   ├── TextLogger.cs
│   │   │   │   └── TraceLogger.Desktop.cs
│   │   │   ├── Modularity
│   │   │   │   ├── AssemblyResolver.Desktop.cs
│   │   │   │   ├── ConfigurationModuleCatalog.Desktop.cs
│   │   │   │   ├── ConfigurationStore.Desktop.cs
│   │   │   │   ├── CyclicDependencyFoundException.cs
│   │   │   │   ├── CyclicDependencyFoundException.Desktop.cs
│   │   │   │   ├── DirectoryModuleCatalog.Desktop.cs
│   │   │   │   ├── DuplicateModuleException.cs
│   │   │   │   ├── DuplicateModuleException.Desktop.cs
│   │   │   │   ├── FileModuleTypeLoader.Desktop.cs
│   │   │   │   ├── IAssemblyResolver.Desktop.cs
│   │   │   │   ├── IConfigurationStore.Desktop.cs
│   │   │   │   ├── IModuleCatalog.cs
│   │   │   │   ├── IModuleCatalogItem.cs
│   │   │   │   ├── IModule.cs
│   │   │   │   ├── IModuleInitializer.cs
│   │   │   │   ├── IModuleManager.cs
│   │   │   │   ├── IModuleTypeLoader.cs
│   │   │   │   ├── InitializationMode.cs
│   │   │   │   ├── LoadModuleCompletedEventArgs.cs
│   │   │   │   ├── ModularityException.cs
│   │   │   │   ├── ModularityException.Desktop.cs
│   │   │   │   ├── ModuleAttribute.Desktop.cs
│   │   │   │   ├── ModuleCatalog.cs
│   │   │   │   ├── ModuleConfigurationElementCollection.Desktop.cs
│   │   │   │   ├── ModuleConfigurationElement.Desktop.cs
│   │   │   │   ├── ModuleDependencyAttribute.Desktop.cs
│   │   │   │   ├── ModuleDependencyCollection.Desktop.cs
│   │   │   │   ├── ModuleDependencyConfigurationElement.Desktop.cs
│   │   │   │   ├── ModuleDependencySolver.cs
│   │   │   │   ├── ModuleDownloadProgressChangedEventArgs.cs
│   │   │   │   ├── ModuleInfo.cs
│   │   │   │   ├── ModuleInfo.Desktop.cs
│   │   │   │   ├── ModuleInfoGroup.cs
│   │   │   │   ├── ModuleInfoGroupExtensions.cs
│   │   │   │   ├── ModuleInitializeException.cs
│   │   │   │   ├── ModuleInitializeException.Desktop.cs
│   │   │   │   ├── ModuleInitializer.cs
│   │   │   │   ├── ModuleManager.cs
│   │   │   │   ├── ModuleManager.Desktop.cs
│   │   │   │   ├── ModuleNotFoundException.cs
│   │   │   │   ├── ModuleNotFoundException.Desktop.cs
│   │   │   │   ├── ModulesConfigurationSection.Desktop.cs
│   │   │   │   ├── ModuleState.cs
│   │   │   │   ├── ModuleTypeLoaderNotFoundException.cs
│   │   │   │   ├── ModuleTypeLoaderNotFoundException.Desktop.cs
│   │   │   │   ├── ModuleTypeLoadingException.cs
│   │   │   │   └── ModuleTypeLoadingException.Desktop.cs
│   │   │   ├── ObservableObject.cs
│   │   │   ├── packages.config
│   │   │   ├── Prism.Composition.Desktop.csproj
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   └── Resources.resx
│   │   │   ├── Regions
│   │   │   │   ├── AllActiveRegion.cs
│   │   │   │   ├── Behaviors
│   │   │   │   │   ├── AutoPopulateRegionBehavior.cs
│   │   │   │   │   ├── BindRegionContextToDependencyObjectBehavior.cs
│   │   │   │   │   ├── ClearChildViewsRegionBehavior.cs
│   │   │   │   │   ├── DelayedRegionCreationBehavior.cs
│   │   │   │   │   ├── IHostAwareRegionBehavior.cs
│   │   │   │   │   ├── RegionActiveAwareBehavior.cs
│   │   │   │   │   ├── RegionCreationException.cs
│   │   │   │   │   ├── RegionCreationException.Desktop.cs
│   │   │   │   │   ├── RegionManagerRegistrationBehavior.cs
│   │   │   │   │   ├── RegionMemberLifetimeBehavior.cs
│   │   │   │   │   ├── SelectorItemsSourceSyncBehavior.cs
│   │   │   │   │   └── SyncRegionContextWithHostBehavior.cs
│   │   │   │   ├── ContentControlRegionAdapter.cs
│   │   │   │   ├── DefaultRegionManagerAccessor.cs
│   │   │   │   ├── IConfirmNavigationRequest.cs
│   │   │   │   ├── INavigateAsync.cs
│   │   │   │   ├── INavigationAware.cs
│   │   │   │   ├── IRegionAdapter.cs
│   │   │   │   ├── IRegionBehaviorCollection.cs
│   │   │   │   ├── IRegionBehavior.cs
│   │   │   │   ├── IRegionBehaviorFactory.cs
│   │   │   │   ├── IRegionCollection.cs
│   │   │   │   ├── IRegion.cs
│   │   │   │   ├── IRegionManagerAccessor.cs
│   │   │   │   ├── IRegionManager.cs
│   │   │   │   ├── IRegionMemberLifetime.cs
│   │   │   │   ├── IRegionNavigationContentLoader.cs
│   │   │   │   ├── IRegionNavigationJournal.cs
│   │   │   │   ├── IRegionNavigationJournalEntry.cs
│   │   │   │   ├── IRegionNavigationService.cs
│   │   │   │   ├── IRegionViewRegistry.cs
│   │   │   │   ├── ItemMetadata.cs
│   │   │   │   ├── ItemsControlRegionAdapter.cs
│   │   │   │   ├── IViewsCollection.cs
│   │   │   │   ├── NavigationAsyncExtensions.cs
│   │   │   │   ├── NavigationContext.cs
│   │   │   │   ├── NavigationParameters.cs
│   │   │   │   ├── NavigationResult.cs
│   │   │   │   ├── RegionAdapterBase.cs
│   │   │   │   ├── RegionAdapterMappings.cs
│   │   │   │   ├── RegionBehaviorCollection.cs
│   │   │   │   ├── RegionBehavior.cs
│   │   │   │   ├── RegionBehaviorFactory.cs
│   │   │   │   ├── RegionContext.cs
│   │   │   │   ├── Region.cs
│   │   │   │   ├── RegionManager.cs
│   │   │   │   ├── RegionManagerExtensions.cs
│   │   │   │   ├── RegionMemberLifetimeAttribute.cs
│   │   │   │   ├── RegionNavigationContentLoader.cs
│   │   │   │   ├── RegionNavigationEventArgs.cs
│   │   │   │   ├── RegionNavigationFailedEventArgs.cs
│   │   │   │   ├── RegionNavigationJournal.cs
│   │   │   │   ├── RegionNavigationJournalEntry.cs
│   │   │   │   ├── RegionNavigationService.cs
│   │   │   │   ├── RegionViewRegistry.cs
│   │   │   │   ├── SelectorRegionAdapter.cs
│   │   │   │   ├── SingleActiveRegion.cs
│   │   │   │   ├── SyncActiveStateAttribute.cs
│   │   │   │   ├── UpdateRegionsException.cs
│   │   │   │   ├── UpdateRegionsException.Desktop.cs
│   │   │   │   ├── ViewRegisteredEventArgs.cs
│   │   │   │   ├── ViewRegistrationException.cs
│   │   │   │   ├── ViewRegistrationException.Desktop.cs
│   │   │   │   ├── ViewsCollection.cs
│   │   │   │   ├── ViewsCollection.Desktop.cs
│   │   │   │   ├── ViewSortHintAttribute.cs
│   │   │   │   └── WeakDelegatesManager.cs
│   │   │   ├── ServiceLocatorExtensions.cs
│   │   │   ├── UriParsingHelper.cs
│   │   │   └── ViewModel
│   │   │   ├── NotificationObject.cs
│   │   │   └── PropertySupport.cs
│   │   ├── Prism.Interactivity
│   │   │   ├── CommandBehaviorBase.cs
│   │   │   ├── DefaultPopupWindows
│   │   │   │   ├── DefaultConfirmationWindow.xaml
│   │   │   │   ├── DefaultConfirmationWindow.xaml.cs
│   │   │   │   ├── DefaultNotificationWindow.xaml
│   │   │   │   └── DefaultNotificationWindow.xaml.cs
│   │   │   ├── InteractionRequest
│   │   │   │   ├── Confirmation.cs
│   │   │   │   ├── IConfirmation.cs
│   │   │   │   ├── IInteractionRequestAware.cs
│   │   │   │   ├── IInteractionRequest.cs
│   │   │   │   ├── INotification.cs
│   │   │   │   ├── InteractionRequest.cs
│   │   │   │   ├── InteractionRequestedEventArgs.cs
│   │   │   │   ├── InteractionRequestTrigger.cs
│   │   │   │   └── Notification.cs
│   │   │   ├── InvokeCommandAction.cs
│   │   │   ├── PopupWindowAction.cs
│   │   │   ├── Prism.Interactivity.csproj
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Prism.Interactivity.Tests
│   │   │   ├── CommandBehaviorBaseFixture.cs
│   │   │   ├── InteractionRequestFixture.cs
│   │   │   ├── InteractionRequestTriggerFixture.cs
│   │   │   ├── InvokeCommandActionFixture.cs
│   │   │   ├── Mocks
│   │   │   │   ├── MockFrameworkElement.cs
│   │   │   │   └── MockInteractionRequestAwareElement.cs
│   │   │   ├── PopupWindowActionFixture.cs
│   │   │   ├── Prism.Interactivity.Tests.csproj
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Prism.MefExtensions
│   │   │   ├── DefaultPrismServiceRegistrar.cs
│   │   │   ├── Events
│   │   │   │   └── MefEventAggregator.cs
│   │   │   ├── GlobalSuppressions.cs
│   │   │   ├── MefBootstrapper.cs
│   │   │   ├── MefServiceLocatorAdapter.cs
│   │   │   ├── Modularity
│   │   │   │   ├── DownloadedPartCatalogCollection.cs
│   │   │   │   ├── IModuleExport.cs
│   │   │   │   ├── MefFileModuleTypeLoader.Desktop.cs
│   │   │   │   ├── MefModuleInitializer.cs
│   │   │   │   ├── MefModuleManager.cs
│   │   │   │   ├── MefModuleManager.Desktop.cs
│   │   │   │   └── ModuleExportAttribute.cs
│   │   │   ├── packages.config
│   │   │   ├── PrismDefaultsCatalog.cs
│   │   │   ├── Prism.MefExtensions.Desktop.csproj
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   └── Resources.resx
│   │   │   └── Regions
│   │   │   ├── Behaviors
│   │   │   │   ├── MefAutoPopulateRegionBehavior.cs
│   │   │   │   ├── MefBindRegionContextToDependencyObjectBehavior.cs
│   │   │   │   ├── MefClearChildViewsRegionBehavior.cs
│   │   │   │   ├── MefDelayedRegionCreationBehavior.cs
│   │   │   │   ├── MefRegionActiveAwareBehavior.cs
│   │   │   │   ├── MefRegionManagerRegistrationBehavior.cs
│   │   │   │   ├── MefRegionMemberLifetimeBehavior.cs
│   │   │   │   ├── MefSelectorItemsSourceSyncBehavior.cs
│   │   │   │   └── MefSyncRegionContextWithHostBehavior.cs
│   │   │   ├── MefContentControlRegionAdapter.cs
│   │   │   ├── MefItemsControlRegionAdapter.cs
│   │   │   ├── MefRegionAdapterMappings.cs
│   │   │   ├── MefRegionBehaviorFactory.cs
│   │   │   ├── MefRegionManager.cs
│   │   │   ├── MefRegionNavigationContentLoader.cs
│   │   │   ├── MefRegionNavigationJournal.cs
│   │   │   ├── MefRegionNavigationJournalEntry.cs
│   │   │   ├── MefRegionNavigationService.cs
│   │   │   ├── MefRegionViewRegistry.cs
│   │   │   └── MefSelectorRegionAdapter.cs
│   │   ├── Prism.MefExtensions.Tests
│   │   │   ├── BootstrapperFixtureBase.cs
│   │   │   ├── DefaultPrismServiceRegistrarFixture.cs
│   │   │   ├── DownloadedPartCatalogCollectionFixture.cs
│   │   │   ├── MefBootstrapperFixture.cs
│   │   │   ├── MefBootstrapperNullLoggerFixture.cs
│   │   │   ├── MefBootstrapperNullModuleCatalogFixture.cs
│   │   │   ├── MefBootstrapperRunMethodFixture.cs
│   │   │   ├── MefFileModuleTypeLoaderFixture.Desktop.cs
│   │   │   ├── MefModuleInitializerFixture.cs
│   │   │   ├── MefModuleManagerFixture.cs
│   │   │   ├── MefModuleManagerFixture.Desktop.cs
│   │   │   ├── MefNullContainerBootstrapperFixture.cs
│   │   │   ├── MefNullModuleManagerFixture.cs
│   │   │   ├── MefRegionNavigationContentLoaderFixture.cs
│   │   │   ├── MefServiceLocatorAdapterFixture.cs
│   │   │   ├── packages.config
│   │   │   ├── Prism.MefExtensions.Desktop.Tests.csproj
│   │   │   └── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Prism.Tests
│   │   │   ├── App.config
│   │   │   ├── BootstrapperFixture.cs
│   │   │   ├── CollectionExtensionsFixture.cs
│   │   │   ├── CompilerHelper.Desktop.cs
│   │   │   ├── Events
│   │   │   │   ├── CompositePresentationEventFixture.cs
│   │   │   │   └── DispatcherEventSubscriptionFixture.cs
│   │   │   ├── ExceptionExtensionsFixture.cs
│   │   │   ├── ListDictionaryFixture.cs
│   │   │   ├── Logging
│   │   │   │   ├── EmptyLoggerFixture.cs
│   │   │   │   ├── TextLoggerFixture.cs
│   │   │   │   └── TraceLoggerFixture.Desktop.cs
│   │   │   ├── Mocks
│   │   │   │   ├── MockAsyncModuleTypeLoader.cs
│   │   │   │   ├── MockClickableObject.cs
│   │   │   │   ├── MockCommand.cs
│   │   │   │   ├── MockConfigurationStore.Desktop.cs
│   │   │   │   ├── MockContainerAdapter.cs
│   │   │   │   ├── MockDelegateReference.cs
│   │   │   │   ├── MockDependencyObject.cs
│   │   │   │   ├── MockHostAwareRegionBehavior.cs
│   │   │   │   ├── MockLogger.cs
│   │   │   │   ├── MockModuleTypeLoader.cs
│   │   │   │   ├── MockPresentationRegion.cs
│   │   │   │   ├── MockRegionAdapter.cs
│   │   │   │   ├── MockRegionBehaviorCollection.cs
│   │   │   │   ├── MockRegionBehavior.cs
│   │   │   │   ├── MockRegion.cs
│   │   │   │   ├── MockRegionManagerAccessor.cs
│   │   │   │   ├── MockRegionManager.cs
│   │   │   │   ├── MockServiceLocator.cs
│   │   │   │   ├── MockSortableViews.cs
│   │   │   │   ├── MockViewsCollection.cs
│   │   │   │   └── Modules
│   │   │   │   ├── MockAbstractModule.cs
│   │   │   │   ├── MockAttributedModule.cs
│   │   │   │   ├── MockDependantModule.cs
│   │   │   │   ├── MockDependencyModule.cs
│   │   │   │   ├── MockExposingTypeFromGacAssemblyModule.cs
│   │   │   │   ├── MockModuleA.cs
│   │   │   │   ├── MockModuleReferencedAssembly.cs
│   │   │   │   ├── MockModuleReferencingAssembly.cs
│   │   │   │   ├── MockModuleReferencingOtherModule.cs
│   │   │   │   ├── MockModuleThrowingException.cs
│   │   │   │   └── MockStartupLoadedAttributedModule.cs
│   │   │   ├── Modularity
│   │   │   │   ├── AssemblyResolverFixture.Desktop.cs
│   │   │   │   ├── ConfigurationModuleCatalogFixture.Desktop.cs
│   │   │   │   ├── ConfigurationStoreFixture.Desktop.cs
│   │   │   │   ├── DirectoryModuleCatalogFixture.Desktop.cs
│   │   │   │   ├── FileModuleTypeLoaderFixture.Desktop.cs
│   │   │   │   ├── ModuleAttributeFixture.Desktop.cs
│   │   │   │   ├── ModuleCatalogFixture.cs
│   │   │   │   ├── ModuleCatalogXaml
│   │   │   │   │   └── SimpleModuleCatalog.xaml
│   │   │   │   ├── ModuleDependencySolverFixture.cs
│   │   │   │   ├── ModuleInfoGroupExtensionsFixture.cs
│   │   │   │   ├── ModuleInfoGroupFixture.cs
│   │   │   │   ├── ModuleInitializerFixture.cs
│   │   │   │   ├── ModuleManagerFixture.cs
│   │   │   │   └── NotAValidDotNetDll.txt.dll
│   │   │   ├── packages.config
│   │   │   ├── Prism.Composition.Desktop.Tests.csproj
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── Regions
│   │   │   │   ├── AllActiveRegionFixture.cs
│   │   │   │   ├── Behaviors
│   │   │   │   │   ├── AutoPopulateRegionBehaviorFixture.cs
│   │   │   │   │   ├── BindRegionContextToDependencyObjectBehaviorFixture.cs
│   │   │   │   │   ├── ClearChildViewsRegionBehaviorFixture.cs
│   │   │   │   │   ├── DelayedRegionCreationBehaviorFixture.cs
│   │   │   │   │   ├── RegionActiveAwareBehaviorFixture.cs
│   │   │   │   │   ├── RegionManagerRegistrationBehaviorFixture.cs
│   │   │   │   │   ├── RegionMemberLifetimeBehaviorFixture.cs
│   │   │   │   │   ├── SelectorItemsSourceSyncRegionBehaviorFixture.cs
│   │   │   │   │   └── SyncRegionContextWithHostBehaviorFixture.cs
│   │   │   │   ├── ContentControlRegionAdapterFixture.cs
│   │   │   │   ├── ItemsControlRegionAdapterFixture.cs
│   │   │   │   ├── LocatorNavigationTargetHandlerFixture.cs
│   │   │   │   ├── NavigationAsyncExtensionsFixture.cs
│   │   │   │   ├── NavigationContextFixture.cs
│   │   │   │   ├── RegionAdapterBaseFixture.cs
│   │   │   │   ├── RegionAdapterMappingsFixture.cs
│   │   │   │   ├── RegionBehaviorCollectionFixture.cs
│   │   │   │   ├── RegionBehaviorFactoryFixture.cs
│   │   │   │   ├── RegionBehaviorFixture.cs
│   │   │   │   ├── RegionFixture.cs
│   │   │   │   ├── RegionManagerExtensionsFixture.cs
│   │   │   │   ├── RegionManagerFixture.cs
│   │   │   │   ├── RegionNavigationJournalFixture.cs
│   │   │   │   ├── RegionNavigationServiceFixture.new.cs
│   │   │   │   ├── RegionViewRegistryFixture.cs
│   │   │   │   ├── SelectorRegionAdapterFixture.cs
│   │   │   │   ├── SingleActiveRegionFixture.cs
│   │   │   │   └── ViewsCollectionFixture.cs
│   │   │   ├── ServiceLocatorExtensionsFixture.cs
│   │   │   └── ViewModel
│   │   │   ├── NotificationObjectFixture.cs
│   │   │   └── PropertySupportFixture.cs
│   │   ├── Prism.TestSupport
│   │   │   ├── CollectionChangedTracker.cs
│   │   │   ├── ExceptionAssert.cs
│   │   │   ├── Mocks
│   │   │   │   └── MockUnityContainer.cs
│   │   │   ├── packages.config
│   │   │   ├── Prism.TestSupport.csproj
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   └── PropertyChangeTracker.cs
│   │   ├── Prism.UnityExtensions
│   │   │   ├── GlobalSuppressions.cs
│   │   │   ├── packages.config
│   │   │   ├── Prism.UnityExtensions.Desktop.csproj
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   └── Resources.resx
│   │   │   ├── Regions
│   │   │   │   └── UnityRegionNavigationContentLoader.cs
│   │   │   ├── UnityBootstrapper.cs
│   │   │   ├── UnityBootstrapperExtension.cs
│   │   │   ├── UnityContainerHelper.cs
│   │   │   └── UnityServiceLocatorAdapter.cs
│   │   └── Prism.UnityExtensions.Tests
│   │   ├── BootstrapperFixtureBase.cs
│   │   ├── Mocks
│   │   │   ├── DependantA.cs
│   │   │   ├── DependantB.cs
│   │   │   ├── MockLoggerAdapter.cs
│   │   │   ├── MockModuleLoader.cs
│   │   │   ├── MockRegionManager.cs
│   │   │   └── MockService.cs
│   │   ├── packages.config
│   │   ├── Prism.UnityExtensions.Desktop.Tests.csproj
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── UnityBootstrapperFixture.cs
│   │   ├── UnityBootstrapperNullContainerFixture.cs
│   │   ├── UnityBootstrapperNullLoggerFixture.cs
│   │   ├── UnityBootstrapperNullModuleCatalogFixture.cs
│   │   ├── UnityBootstrapperNullModuleManagerFixture.cs
│   │   ├── UnityBootstrapperRunMethodFixture.cs
│   │   ├── UnityContainerExtensionFixture.cs
│   │   ├── UnityRegionNavigationContentLoaderFixture.cs
│   │   └── UnityServiceLocatorAdapterFixture.cs
│   ├── packages
│   │   └── repositories.config
│   ├── PrismLibrary_Desktop.sln
│   ├── Prism.Mvvm
│   │   ├── BindableBase.cs
│   │   ├── Commands
│   │   │   ├── CompositeCommand.cs
│   │   │   ├── DelegateCommandBase.cs
│   │   │   ├── DelegateCommand.cs
│   │   │   └── WeakEventHandlerManager.cs
│   │   ├── ErrorsContainer.cs
│   │   ├── IView.cs
│   │   ├── Prism.Mvvm.csproj
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   └── Resources.resx
│   │   ├── PropertySupport.cs
│   │   └── ViewModelLocationProvider.cs
│   ├── Prism.Mvvm.Desktop
│   │   ├── Prism.Mvvm.Desktop.csproj
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   └── Resources.resx
│   │   └── ViewModelLocator.cs
│   ├── Prism.Mvvm.Tests
│   │   ├── BindableBaseFixture.cs
│   │   ├── Commands
│   │   │   ├── CompositeCommandFixture.cs
│   │   │   └── DelegateCommandFixture.cs
│   │   ├── ErrorsContainerFixture.cs
│   │   ├── Mocks
│   │   │   ├── ViewModels
│   │   │   │   └── MockViewModel.cs
│   │   │   └── Views
│   │   │   └── Mock.cs
│   │   ├── Prism.Mvvm.Tests.csproj
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── PropertySupportFixture.cs
│   │   └── ViewModelLocationProviderFixture.cs
│   ├── Prism.PubSubEvents
│   │   ├── BackgroundEventSubscription.cs
│   │   ├── DataEventArgs.cs
│   │   ├── DelegateReference.cs
│   │   ├── DispatcherEventSubscription.cs
│   │   ├── EventAggregator.cs
│   │   ├── EventBase.cs
│   │   ├── EventSubscription.cs
│   │   ├── IDelegateReference.cs
│   │   ├── IEventAggregator.cs
│   │   ├── IEventSubscription.cs
│   │   ├── Prism.PubSubEvents.csproj
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   └── Resources.resx
│   │   ├── PubSubEvent.cs
│   │   ├── SubscriptionToken.cs
│   │   └── ThreadOption.cs
│   ├── Prism.PubSubEvents.Tests
│   │   ├── BackgroundEventSubscriptionFixture.cs
│   │   ├── DataEventArgsFixture.cs
│   │   ├── DelegateReferenceFixture.cs
│   │   ├── DispatcherEventSubscriptionFixture.cs
│   │   ├── EventAggregatorFixture.cs
│   │   ├── EventBaseFixture.cs
│   │   ├── EventSubscriptionFixture.cs
│   │   ├── MockDelegateReference.cs
│   │   ├── Prism.PubSubEvents.Tests.csproj
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   └── PubSubEventFixture.cs
│   └── Prism.SharedInterfaces
│   ├── IActiveAware.cs
│   ├── Prism.SharedInterfaces.csproj
│   └── Properties
│   └── AssemblyInfo.cs
├── Prism Library.lnk
├── Quickstarts
│   ├── BasicMVVMQuickstart_Desktop
│   │   ├── BasicMVVMQuickstart_Desktop
│   │   │   ├── App.config
│   │   │   ├── App.xaml
│   │   │   ├── App.xaml.cs
│   │   │   ├── BasicMVVMQuickstart_Desktop.csproj
│   │   │   ├── Images
│   │   │   │   └── info.png
│   │   │   ├── Model
│   │   │   │   └── Questionnaire.cs
│   │   │   ├── packages.config
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── QuestionnaireViewDesignViewModel.cs
│   │   │   ├── Theme
│   │   │   │   └── Theme.xaml
│   │   │   ├── ViewModels
│   │   │   │   ├── MainWindowViewModel.cs
│   │   │   │   └── QuestionnaireViewModel.cs
│   │   │   └── Views
│   │   │   ├── MainWindow.xaml
│   │   │   ├── MainWindow.xaml.cs
│   │   │   ├── QuestionnaireView.xaml
│   │   │   └── QuestionnaireView.xaml.cs
│   │   ├── BasicMVVMQuickstart_Desktop.sln
│   │   ├── BasicMVVMQuickstart.Tests.AcceptanceTest
│   │   │   ├── BasicMVVMQuickstart.Tests.AcceptanceTest
│   │   │   │   ├── App.config
│   │   │   │   ├── BasicMVVMQuickstart.Tests.AcceptanceTest.csproj
│   │   │   │   ├── Desktop
│   │   │   │   │   └── BasicMVVMQuickstartFixture.cs
│   │   │   │   ├── Properties
│   │   │   │   │   └── AssemblyInfo.cs
│   │   │   │   ├── TestData
│   │   │   │   │   ├── ControlIdentifiers.resx
│   │   │   │   │   └── TestDataInput.resx
│   │   │   │   └── TestEntities
│   │   │   │   ├── Assertion
│   │   │   │   │   └── BasicMVVMQuickstartAssertion.cs
│   │   │   │   └── Page
│   │   │   │   └── BasicMVVMQuickstartPage.cs
│   │   │   └── BasicMVVMQuickstart.Tests.AcceptanceTest.sln
│   │   └── packages
│   │   └── repositories.config
│   ├── Commanding
│   │   ├── Commanding_Desktop.sln
│   │   ├── Commanding.Tests.AcceptanceTest
│   │   │   ├── Commanding.Tests.AcceptanceTest
│   │   │   │   ├── App.config
│   │   │   │   ├── Commanding.Tests.AcceptanceTest.csproj
│   │   │   │   ├── Desktop
│   │   │   │   │   └── CommandingDesktopFixture.cs
│   │   │   │   ├── Properties
│   │   │   │   │   └── AssemblyInfo.cs
│   │   │   │   ├── TestData
│   │   │   │   │   ├── ControlIdentifiers.Designer.cs
│   │   │   │   │   ├── ControlIdentifiers.resx
│   │   │   │   │   ├── TestDataInput.Designer.cs
│   │   │   │   │   └── TestDataInput.resx
│   │   │   │   └── TestEntities
│   │   │   │   ├── Action
│   │   │   │   │   └── CommandingAction.cs
│   │   │   │   ├── Assertion
│   │   │   │   │   └── CommandingAssertion.cs
│   │   │   │   └── Page
│   │   │   │   └── CommandingPage.cs
│   │   │   └── Commanding.Tests.AcceptanceTest.sln
│   │   ├── Desktop
│   │   │   ├── Commanding
│   │   │   │   ├── app.config
│   │   │   │   ├── App.xaml
│   │   │   │   ├── App.xaml.cs
│   │   │   │   ├── CommandingBootstrapper.cs
│   │   │   │   ├── Commanding.Desktop.csproj
│   │   │   │   ├── GlobalSuppressions.cs
│   │   │   │   ├── packages.config
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── Shell.xaml
│   │   │   │   ├── Shell.xaml.cs
│   │   │   │   └── Styles
│   │   │   │   └── styles.xaml
│   │   │   └── Commanding.OrderModule
│   │   │   ├── app.config
│   │   │   ├── Commanding.Modules.Order.Desktop.csproj
│   │   │   ├── Converter
│   │   │   │   ├── DateConverter.cs
│   │   │   │   ├── ErrorConverter.cs
│   │   │   │   └── StringToNullableNumberConverter.cs
│   │   │   ├── GlobalSuppressions.cs
│   │   │   ├── OrderModule.cs
│   │   │   ├── OrdersCommands.cs
│   │   │   ├── OrdersToolBar.xaml
│   │   │   ├── OrdersToolBar.xaml.cs
│   │   │   ├── packages.config
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   └── Resources.resx
│   │   │   ├── Services
│   │   │   │   ├── IOrdersRepository.cs
│   │   │   │   ├── Order.cs
│   │   │   │   └── OrdersRepository.cs
│   │   │   ├── ViewModels
│   │   │   │   ├── OrdersEditorViewModel.cs
│   │   │   │   └── OrderViewModel.cs
│   │   │   └── Views
│   │   │   ├── OrdersEditorView.xaml
│   │   │   └── OrdersEditorView.xaml.cs
│   │   └── packages
│   │   └── repositories.config
│   ├── EventAggregation
│   │   ├── Desktop
│   │   │   ├── app.config
│   │   │   ├── App.xaml
│   │   │   ├── App.xaml.cs
│   │   │   ├── Bootstrapper.cs
│   │   │   ├── EventAggregation.Desktop.csproj
│   │   │   ├── EventAggregation.Infrastructure
│   │   │   │   ├── EventAggregation.Infrastructure.Desktop.csproj
│   │   │   │   ├── FundAddedEvent.cs
│   │   │   │   ├── FundOrder.cs
│   │   │   │   ├── GlobalSuppressions.cs
│   │   │   │   ├── packages.config
│   │   │   │   └── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── EventAggregation.Tests.AcceptanceTests
│   │   │   │   ├── App.config
│   │   │   │   ├── AutomatedTests
│   │   │   │   │   ├── ApplicationObserver
│   │   │   │   │   │   ├── IStateObserver.cs
│   │   │   │   │   │   └── StateDiagnosis.cs
│   │   │   │   │   ├── FixtureBase.cs
│   │   │   │   │   ├── ModuleFixtures
│   │   │   │   │   │   ├── ModuleAFixture.cs
│   │   │   │   │   │   └── ModuleBFixture.cs
│   │   │   │   │   └── ShellFixture.cs
│   │   │   │   ├── EventAggregation.Tests.AcceptanceTests.csproj
│   │   │   │   ├── Helpers
│   │   │   │   │   ├── ConfigHandler.cs
│   │   │   │   │   ├── ResXConfigHandler.cs
│   │   │   │   │   └── UIItemExtensions.cs
│   │   │   │   ├── Properties
│   │   │   │   │   └── AssemblyInfo.cs
│   │   │   │   ├── TestData
│   │   │   │   │   ├── ControlIdentifiers.Designer.cs
│   │   │   │   │   ├── ControlIdentifiers.resx
│   │   │   │   │   ├── TestDataInput.Designer.cs
│   │   │   │   │   └── TestDataInput.resx
│   │   │   │   └── TestInfrastructure
│   │   │   │   ├── DataProvider
│   │   │   │   │   ├── DataProviderBase.cs
│   │   │   │   │   └── IDataProvider.cs
│   │   │   │   └── TestDataInfrastructure.cs
│   │   │   ├── GlobalSuppressions.cs
│   │   │   ├── ModuleA
│   │   │   │   ├── AddFundPresenter.cs
│   │   │   │   ├── AddFundView.xaml
│   │   │   │   ├── AddFundView.xaml.cs
│   │   │   │   ├── app.config
│   │   │   │   ├── GlobalSuppressions.cs
│   │   │   │   ├── IAddFundView.cs
│   │   │   │   ├── ModuleA.cs
│   │   │   │   ├── ModuleA.Desktop.csproj
│   │   │   │   ├── packages.config
│   │   │   │   └── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── ModuleA.Tests
│   │   │   │   ├── AddFundPresenterFixture.cs
│   │   │   │   ├── app.config
│   │   │   │   ├── Mocks
│   │   │   │   │   ├── MockEventAggregator.cs
│   │   │   │   │   └── MockFundAddedEvent.cs
│   │   │   │   ├── ModuleA.Tests.Desktop.csproj
│   │   │   │   ├── packages.config
│   │   │   │   └── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── ModuleB
│   │   │   │   ├── ActivityPresenter.cs
│   │   │   │   ├── ActivityView.xaml
│   │   │   │   ├── ActivityView.xaml.cs
│   │   │   │   ├── app.config
│   │   │   │   ├── GlobalSuppressions.cs
│   │   │   │   ├── IActivityView.cs
│   │   │   │   ├── ModuleB.cs
│   │   │   │   ├── ModuleB.Desktop.csproj
│   │   │   │   ├── packages.config
│   │   │   │   └── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── ModuleB.Tests
│   │   │   │   ├── ActivityPresenterFixture.cs
│   │   │   │   ├── app.config
│   │   │   │   ├── Mocks
│   │   │   │   │   └── MockEventAggregator.cs
│   │   │   │   ├── ModuleB.Tests.Desktop.csproj
│   │   │   │   └── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── packages.config
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Shell.xaml
│   │   │   ├── Shell.xaml.cs
│   │   │   └── Styles
│   │   │   └── styles.xaml
│   │   ├── EventAggregation_Desktop.sln
│   │   └── EventAggregation.Tests.AcceptanceTest
│   │   ├── EventAggregation.Tests.AcceptanceTest
│   │   │   ├── App.config
│   │   │   ├── Desktop
│   │   │   │   └── EventAggregationAcceptanceTestDesktop.cs
│   │   │   ├── EventAggregation.Tests.AcceptanceTest.csproj
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── TestData
│   │   │   │   ├── ControlIdentifiers.Designer.cs
│   │   │   │   ├── ControlIdentifiers.resx
│   │   │   │   ├── TestDataInput.Designer.cs
│   │   │   │   └── TestDataInput.resx
│   │   │   └── TestEntities
│   │   │   ├── Action
│   │   │   │   └── EventAggregationAction.cs
│   │   │   ├── Assertion
│   │   │   │   └── EventAggregationAssertion.cs
│   │   │   └── Page
│   │   │   └── EventAggregationPage.cs
│   │   └── EventAggregation.Tests.AcceptanceTest.sln
│   ├── Hello World
│   │   └── HelloWorld.Desktop
│   │   ├── HelloWorld.Desktop
│   │   │   ├── app.config
│   │   │   ├── App.xaml
│   │   │   ├── App.xaml.cs
│   │   │   ├── Bootstrapper.cs
│   │   │   ├── HelloWorld.Desktop.csproj
│   │   │   ├── MainWindow.cs
│   │   │   ├── packages.config
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Shell.xaml
│   │   │   └── Shell.xaml.cs
│   │   ├── HelloWorld.Desktop.sln
│   │   ├── HelloWorldModule
│   │   │   ├── HelloWorldModule.cs
│   │   │   ├── HelloWorldModule.csproj
│   │   │   ├── packages.config
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   └── Views
│   │   │   ├── HelloWorldView.xaml
│   │   │   └── HelloWorldView.xaml.cs
│   │   └── packages
│   │   └── repositories.config
│   ├── Interactivity
│   │   ├── InteractivityQuickstart
│   │   │   ├── App.config
│   │   │   ├── App.xaml
│   │   │   ├── App.xaml.cs
│   │   │   ├── InteractivityQuickstart.csproj
│   │   │   ├── MainWindow.xaml
│   │   │   ├── MainWindow.xaml.cs
│   │   │   ├── Notifications
│   │   │   │   └── ItemSelectionNotification.cs
│   │   │   ├── packages.config
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── ViewModels
│   │   │   │   ├── InteractionRequestViewModel.cs
│   │   │   │   ├── InvokeCommandActionViewModel.cs
│   │   │   │   └── ItemSelectionViewModel.cs
│   │   │   └── Views
│   │   │   ├── CustomPopupView.xaml
│   │   │   ├── CustomPopupView.xaml.cs
│   │   │   ├── InteractionRequestView.xaml
│   │   │   ├── InteractionRequestView.xaml.cs
│   │   │   ├── IntroductionView.xaml
│   │   │   ├── IntroductionView.xaml.cs
│   │   │   ├── InvokeCommandActionView.xaml
│   │   │   ├── InvokeCommandActionView.xaml.cs
│   │   │   ├── ItemSelectionView.xaml
│   │   │   └── ItemSelectionView.xaml.cs
│   │   ├── InteractivityQuickstart.sln
│   │   └── Interactivity.Tests.AcceptanceTest
│   │   ├── Interactivity.Tests.AcceptanceTest
│   │   │   ├── App.config
│   │   │   ├── Desktop
│   │   │   │   └── InteractivityFixture.cs
│   │   │   ├── Interactivity.Tests.AcceptanceTest.csproj
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── TestData
│   │   │   │   ├── ControlIdentifiers.resx
│   │   │   │   └── TestDataInput.resx
│   │   │   └── TestEntities
│   │   │   ├── Assertion
│   │   │   │   └── InteractivityAssertion.cs
│   │   │   └── Page
│   │   │   └── InteractivityPage.cs
│   │   └── Interactivity.Tests.AcceptanceTest.sln
│   ├── Modularity
│   │   ├── Desktop
│   │   │   ├── ModularityWithMef
│   │   │   │   ├── ModularityWithMef.Desktop
│   │   │   │   │   ├── App.config
│   │   │   │   │   ├── App.xaml
│   │   │   │   │   ├── App.xaml.cs
│   │   │   │   │   ├── CallbackLogger.cs
│   │   │   │   │   ├── DiscoveryMethod.cs
│   │   │   │   │   ├── DownloadTiming.cs
│   │   │   │   │   ├── ModularityStyles.xaml
│   │   │   │   │   ├── ModularityWithMef.Desktop.csproj
│   │   │   │   │   ├── ModuleControl.xaml
│   │   │   │   │   ├── ModuleControl.xaml.cs
│   │   │   │   │   ├── ModuleInitializationStatus.cs
│   │   │   │   │   ├── ModuleTracker.cs
│   │   │   │   │   ├── ModuleTrackingState.cs
│   │   │   │   │   ├── packages.config
│   │   │   │   │   ├── Properties
│   │   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   │   ├── Resources.resx
│   │   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   │   └── Settings.settings
│   │   │   │   │   ├── QuickStartBootstrapper.cs
│   │   │   │   │   ├── Shell.xaml
│   │   │   │   │   └── Shell.xaml.cs
│   │   │   │   ├── ModularityWithMef.Desktop.sln
│   │   │   │   ├── ModuleA
│   │   │   │   │   ├── GlobalSuppressions.cs
│   │   │   │   │   ├── ModuleA.cs
│   │   │   │   │   ├── ModuleA.csproj
│   │   │   │   │   ├── packages.config
│   │   │   │   │   └── Properties
│   │   │   │   │   └── AssemblyInfo.cs
│   │   │   │   ├── ModuleB
│   │   │   │   │   ├── GlobalSuppressions.cs
│   │   │   │   │   ├── ModuleB.cs
│   │   │   │   │   ├── ModuleB.csproj
│   │   │   │   │   ├── packages.config
│   │   │   │   │   └── Properties
│   │   │   │   │   └── AssemblyInfo.cs
│   │   │   │   ├── ModuleC
│   │   │   │   │   ├── GlobalSuppressions.cs
│   │   │   │   │   ├── ModuleC.cs
│   │   │   │   │   ├── ModuleC.csproj
│   │   │   │   │   ├── packages.config
│   │   │   │   │   └── Properties
│   │   │   │   │   └── AssemblyInfo.cs
│   │   │   │   ├── ModuleD
│   │   │   │   │   ├── GlobalSuppressions.cs
│   │   │   │   │   ├── ModuleD.cs
│   │   │   │   │   ├── ModuleD.csproj
│   │   │   │   │   ├── packages.config
│   │   │   │   │   └── Properties
│   │   │   │   │   └── AssemblyInfo.cs
│   │   │   │   ├── ModuleE
│   │   │   │   │   ├── GlobalSuppressions.cs
│   │   │   │   │   ├── ModuleE.cs
│   │   │   │   │   ├── ModuleE.csproj
│   │   │   │   │   ├── packages.config
│   │   │   │   │   └── Properties
│   │   │   │   │   └── AssemblyInfo.cs
│   │   │   │   ├── ModuleF
│   │   │   │   │   ├── GlobalSuppressions.cs
│   │   │   │   │   ├── ModuleF.cs
│   │   │   │   │   ├── ModuleF.csproj
│   │   │   │   │   ├── packages.config
│   │   │   │   │   └── Properties
│   │   │   │   │   └── AssemblyInfo.cs
│   │   │   │   └── ModuleTracking
│   │   │   │   ├── GlobalSuppressions.cs
│   │   │   │   ├── IModuleTracker.cs
│   │   │   │   ├── ModuleTracking.csproj
│   │   │   │   ├── Properties
│   │   │   │   │   └── AssemblyInfo.cs
│   │   │   │   └── WellKnownModuleNames.cs
│   │   │   └── ModularityWithUnity
│   │   │   ├── ModularityWithUnity.Desktop
│   │   │   │   ├── AggregateModuleCatalog.cs
│   │   │   │   ├── App.config
│   │   │   │   ├── App.xaml
│   │   │   │   ├── App.xaml.cs
│   │   │   │   ├── CallbackLogger.cs
│   │   │   │   ├── DiscoveryMethod.cs
│   │   │   │   ├── DownloadTiming.cs
│   │   │   │   ├── GlobalSuppressions.cs
│   │   │   │   ├── ModularityStyles.xaml
│   │   │   │   ├── ModularityWithUnity.Desktop.csproj
│   │   │   │   ├── ModuleControl.xaml
│   │   │   │   ├── ModuleControl.xaml.cs
│   │   │   │   ├── ModuleInitializationStatus.cs
│   │   │   │   ├── ModuleTracker.cs
│   │   │   │   ├── ModuleTrackingState.cs
│   │   │   │   ├── packages.config
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── QuickStartBootstrapper.cs
│   │   │   │   ├── Shell.xaml
│   │   │   │   └── Shell.xaml.cs
│   │   │   ├── ModularityWithUnity.Desktop.sln
│   │   │   ├── ModuleA
│   │   │   │   ├── GlobalSuppressions.cs
│   │   │   │   ├── ModuleA.cs
│   │   │   │   ├── ModuleA.csproj
│   │   │   │   ├── packages.config
│   │   │   │   └── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── ModuleB
│   │   │   │   ├── GlobalSuppressions.cs
│   │   │   │   ├── ModuleB.cs
│   │   │   │   ├── ModuleB.csproj
│   │   │   │   ├── packages.config
│   │   │   │   └── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── ModuleC
│   │   │   │   ├── GlobalSuppressions.cs
│   │   │   │   ├── ModuleC.cs
│   │   │   │   ├── ModuleC.csproj
│   │   │   │   ├── packages.config
│   │   │   │   └── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── ModuleD
│   │   │   │   ├── GlobalSuppressions.cs
│   │   │   │   ├── ModuleD.cs
│   │   │   │   ├── ModuleD.csproj
│   │   │   │   ├── packages.config
│   │   │   │   └── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── ModuleE
│   │   │   │   ├── GlobalSuppressions.cs
│   │   │   │   ├── ModuleE.cs
│   │   │   │   ├── ModuleE.csproj
│   │   │   │   ├── packages.config
│   │   │   │   └── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── ModuleF
│   │   │   │   ├── GlobalSuppressions.cs
│   │   │   │   ├── ModuleF.cs
│   │   │   │   ├── ModuleF.csproj
│   │   │   │   ├── packages.config
│   │   │   │   └── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── ModuleTracking
│   │   │   │   ├── GlobalSuppressions.cs
│   │   │   │   ├── IModuleTracker.cs
│   │   │   │   ├── ModuleTracking.csproj
│   │   │   │   ├── Properties
│   │   │   │   │   └── AssemblyInfo.cs
│   │   │   │   └── WellKnownModuleNames.cs
│   │   │   └── packages
│   │   │   └── repositories.config
│   │   ├── ModularityWithMef.Tests.AcceptanceTest
│   │   │   ├── ModularityWithMef.Tests.AcceptanceTest
│   │   │   │   ├── App.config
│   │   │   │   ├── Desktop
│   │   │   │   │   └── ModularityWithMef.Desktop.test.cs
│   │   │   │   ├── ModularityWithMef.Tests.AcceptanceTest.csproj
│   │   │   │   ├── Properties
│   │   │   │   │   └── AssemblyInfo.cs
│   │   │   │   ├── TestData
│   │   │   │   │   ├── ControlIdentifiers.Designer.cs
│   │   │   │   │   ├── ControlIdentifiers.resx
│   │   │   │   │   ├── TestDataInput.Designer.cs
│   │   │   │   │   └── TestDataInput.resx
│   │   │   │   └── TestEntities
│   │   │   │   └── Page
│   │   │   │   └── ModularityPage.cs
│   │   │   └── ModularityWithMef.Tests.AcceptanceTest.sln
│   │   └── ModularityWithUnity.Tests.AcceptanceTest
│   │   ├── ModularityWithUnity.Tests.AcceptanceTest
│   │   │   ├── App.config
│   │   │   ├── Desktop
│   │   │   │   └── ModularityWithUnity.Desktop.test.cs
│   │   │   ├── ModularityWithUnity.Tests.AcceptanceTest.csproj
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── TestData
│   │   │   │   ├── ControlIdentifiers.Designer.cs
│   │   │   │   ├── ControlIdentifiers.resx
│   │   │   │   ├── TestDataInput.Designer.cs
│   │   │   │   └── TestDataInput.resx
│   │   │   └── TestEntities
│   │   │   └── Page
│   │   │   └── ModularityPage.cs
│   │   └── ModularityWithUnity.Tests.AcceptanceTest.sln
│   ├── State-Based Navigation_Desktop
│   │   ├── packages
│   │   │   └── repositories.config
│   │   ├── State-Based Navigation.Desktop
│   │   │   ├── App.config
│   │   │   ├── App.xaml
│   │   │   ├── App.xaml.cs
│   │   │   ├── Avatars
│   │   │   │   ├── MC900432625.PNG
│   │   │   │   ├── MC900433938.PNG
│   │   │   │   ├── MC900433946.PNG
│   │   │   │   └── MC900434899.PNG
│   │   │   ├── Controls
│   │   │   │   ├── BusyIndicator.xaml
│   │   │   │   ├── BusyIndicator.xaml.cs
│   │   │   │   ├── InfoTipToggleButton.xaml
│   │   │   │   └── InfoTipToggleButton.xaml.cs
│   │   │   ├── Images
│   │   │   │   ├── disconnect.png
│   │   │   │   └── Info.png
│   │   │   ├── Infrastructure
│   │   │   │   ├── Behaviors
│   │   │   │   │   └── ShowNotificationAction.cs
│   │   │   │   ├── IOperationResult.cs
│   │   │   │   ├── IOperationResult.Generic.cs
│   │   │   │   ├── OperationResult.cs
│   │   │   │   ├── OperationResult.Generic.cs
│   │   │   │   ├── SizeToBooleanConverter.cs
│   │   │   │   ├── SizeToVisibilityConverter.cs
│   │   │   │   └── StringMatchToBoolConverter.cs
│   │   │   ├── MainWindow.xaml
│   │   │   ├── MainWindow.xaml.cs
│   │   │   ├── Model
│   │   │   │   ├── ChatService.cs
│   │   │   │   ├── Contact.cs
│   │   │   │   ├── IChatService.cs
│   │   │   │   ├── ITimer.cs
│   │   │   │   └── ReceivedMessage.cs
│   │   │   ├── packages.config
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── State-Based Navigation.Desktop.csproj
│   │   │   ├── Theme
│   │   │   │   └── Theme.xaml
│   │   │   ├── ViewModels
│   │   │   │   ├── ChatViewModel.cs
│   │   │   │   └── SendMessageViewModel.cs
│   │   │   └── Views
│   │   │   ├── ChatView.xaml
│   │   │   ├── ChatView.xaml.cs
│   │   │   ├── SendMessagePopupView.xaml
│   │   │   └── SendMessagePopupView.xaml.cs
│   │   ├── State-Based Navigation.sln
│   │   └── State-Based Navigation.Tests.AcceptanceTest
│   │   ├── State-Based Navigation.Tests.AcceptanceTest
│   │   │   ├── App.config
│   │   │   ├── Desktop
│   │   │   │   └── StateBasedNavigationFixture.cs
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── State-Based Navigation.Tests.AcceptanceTest.csproj
│   │   │   ├── TestData
│   │   │   │   ├── ControlIdentifiers.Designer.cs
│   │   │   │   ├── ControlIdentifiers.resx
│   │   │   │   ├── TestDataInput.Designer.cs
│   │   │   │   └── TestDataInput.resx
│   │   │   └── TestEntities
│   │   │   ├── Assertion
│   │   │   │   └── StateBasedNavigationAssertion.cs
│   │   │   └── Page
│   │   │   └── StateBasedNavigationPage.cs
│   │   └── State-Based Navigation.Tests.AcceptanceTest.sln
│   ├── UIComposition_Desktop
│   │   ├── packages
│   │   │   └── repositories.config
│   │   ├── UIComposition_Desktop
│   │   │   ├── App.config
│   │   │   ├── App.xaml
│   │   │   ├── App.xaml.cs
│   │   │   ├── Bootstrapper.cs
│   │   │   ├── GlobalSuppressions.cs
│   │   │   ├── packages.config
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── UIComposition.Shell.csproj
│   │   │   ├── ViewModels
│   │   │   │   └── ShellViewModel.cs
│   │   │   └── Views
│   │   │   ├── ShellView.xaml
│   │   │   └── ShellView.xaml.cs
│   │   ├── UIComposition_Desktop.sln
│   │   ├── UIComposition.EmployeeModule
│   │   │   ├── App.config
│   │   │   ├── Controllers
│   │   │   │   └── MainRegionController.cs
│   │   │   ├── EmployeeSelectedEvent.cs
│   │   │   ├── GlobalSuppressions.cs
│   │   │   ├── Models
│   │   │   │   ├── Employee.cs
│   │   │   │   ├── Employees.cs
│   │   │   │   ├── Project.cs
│   │   │   │   └── Projects.cs
│   │   │   ├── ModuleInit.cs
│   │   │   ├── packages.config
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── RegionNames.cs
│   │   │   ├── Services
│   │   │   │   ├── EmployeeDataService.cs
│   │   │   │   └── IEmployeeDataService.cs
│   │   │   ├── UIComposition.EmployeeModule.csproj
│   │   │   ├── ViewModels
│   │   │   │   ├── EmployeeDetailsViewModel.cs
│   │   │   │   ├── EmployeeListViewModel.cs
│   │   │   │   ├── EmployeeProjectsViewModel.cs
│   │   │   │   └── EmployeeSummaryViewModel.cs
│   │   │   └── Views
│   │   │   ├── EmployeeDetailsView.xaml
│   │   │   ├── EmployeeDetailsView.xaml.cs
│   │   │   ├── EmployeeListView.xaml
│   │   │   ├── EmployeeListView.xaml.cs
│   │   │   ├── EmployeeProjectsView.xaml
│   │   │   ├── EmployeeProjectsView.xaml.cs
│   │   │   ├── EmployeeSummaryView.xaml
│   │   │   └── EmployeeSummaryView.xaml.cs
│   │   └── UIComposition.Tests.AcceptanceTest
│   │   ├── UIComposition.Tests.AcceptanceTest
│   │   │   ├── App.config
│   │   │   ├── Desktop
│   │   │   │   └── UICompositionEmployeeModuleFixture.cs
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── TestData
│   │   │   │   ├── ControlIdentifiers.resx
│   │   │   │   └── TestDataInput.resx
│   │   │   ├── TestEntities
│   │   │   │   ├── Assertion
│   │   │   │   │   └── UICompositionAssertion.cs
│   │   │   │   └── Page
│   │   │   │   └── UICompositionPage.cs
│   │   │   ├── TestInfrastructure
│   │   │   │   ├── DataProvider
│   │   │   │   │   ├── DataProviderBase.cs
│   │   │   │   │   ├── IDataProvider.cs
│   │   │   │   │   ├── MockModels
│   │   │   │   │   │   ├── Employee.cs
│   │   │   │   │   │   └── Project.cs
│   │   │   │   │   └── ModuleDataProvider
│   │   │   │   │   ├── EmployeeDataProvider.cs
│   │   │   │   │   └── ProjectDataProvider.cs
│   │   │   │   └── TestDataInfrastructure.cs
│   │   │   └── UIComposition.Tests.AcceptanceTest.csproj
│   │   └── UIComposition.Tests.AcceptanceTest.sln
│   └── View-Switching Navigation_Desktop
│   ├── packages
│   │   ├── CommonServiceLocator.1.2
│   │   │   ├── CommonServiceLocator.1.2.nupkg
│   │   │   └── lib
│   │   │   └── portable-windows8+net40+sl5+windowsphone8
│   │   │   ├── Microsoft.Practices.ServiceLocation.dll
│   │   │   ├── Microsoft.Practices.ServiceLocation.pdb
│   │   │   └── Microsoft.Practices.ServiceLocation.XML
│   │   ├── Moq.4.2.1312.1622
│   │   │   ├── lib
│   │   │   │   ├── net35
│   │   │   │   │   ├── Moq.dll
│   │   │   │   │   └── Moq.xml
│   │   │   │   ├── net40
│   │   │   │   │   ├── Moq.dll
│   │   │   │   │   └── Moq.xml
│   │   │   │   └── sl4
│   │   │   │   ├── Moq.Silverlight.dll
│   │   │   │   └── Moq.Silverlight.xml
│   │   │   └── Moq.4.2.1312.1622.nupkg
│   │   ├── Prism.Composition.5.0.0
│   │   │   ├── lib
│   │   │   │   └── NET45
│   │   │   │   ├── Microsoft.Practices.Prism.Composition.dll
│   │   │   │   ├── Microsoft.Practices.Prism.Composition.xml
│   │   │   │   ├── Microsoft.Practices.Prism.SharedInterfaces.dll
│   │   │   │   └── Microsoft.Practices.Prism.SharedInterfaces.xml
│   │   │   └── Prism.Composition.5.0.0.nupkg
│   │   ├── Prism.Interactivity.5.0.0
│   │   │   ├── lib
│   │   │   │   └── NET45
│   │   │   │   ├── Microsoft.Practices.Prism.Interactivity.dll
│   │   │   │   └── Microsoft.Practices.Prism.Interactivity.xml
│   │   │   └── Prism.Interactivity.5.0.0.nupkg
│   │   ├── Prism.MEFExtensions.5.0.0
│   │   │   ├── [Content_Types].xml
│   │   │   ├── lib
│   │   │   │   └── NET45
│   │   │   │   ├── Microsoft.Practices.Prism.MefExtensions.dll
│   │   │   │   └── Microsoft.Practices.Prism.MefExtensions.xml
│   │   │   └── Prism.MEFExtensions.5.0.0.nupkg
│   │   ├── Prism.Mvvm.1.0.0
│   │   │   ├── lib
│   │   │   │   ├── net45
│   │   │   │   │   ├── Microsoft.Practices.Prism.Mvvm.Desktop.dll
│   │   │   │   │   ├── Microsoft.Practices.Prism.Mvvm.dll
│   │   │   │   │   ├── Microsoft.Practices.Prism.Mvvm.xml
│   │   │   │   │   ├── Microsoft.Practices.Prism.SharedInterfaces.dll
│   │   │   │   │   └── Microsoft.Practices.Prism.SharedInterfaces.xml
│   │   │   │   ├── windows8
│   │   │   │   │   ├── Microsoft.Practices.Prism.Mvvm.dll
│   │   │   │   │   ├── Microsoft.Practices.Prism.Mvvm.Store.dll
│   │   │   │   │   ├── Microsoft.Practices.Prism.Mvvm.xml
│   │   │   │   │   ├── Microsoft.Practices.Prism.SharedInterfaces.dll
│   │   │   │   │   └── Microsoft.Practices.Prism.SharedInterfaces.xml
│   │   │   │   └── windowsphone8
│   │   │   │   ├── Microsoft.Practices.Prism.Mvvm.dll
│   │   │   │   ├── Microsoft.Practices.Prism.Mvvm.Phone.dll
│   │   │   │   ├── Microsoft.Practices.Prism.Mvvm.xml
│   │   │   │   ├── Microsoft.Practices.Prism.SharedInterfaces.dll
│   │   │   │   └── Microsoft.Practices.Prism.SharedInterfaces.xml
│   │   │   └── Prism.Mvvm.1.0.0.nupkg
│   │   └── Prism.PubSubEvents.1.0.0
│   │   ├── lib
│   │   │   └── portable-sl4+wp7+windows8+net40
│   │   │   └── Microsoft.Practices.Prism.PubSubEvents.dll
│   │   └── Prism.PubSubEvents.1.0.0.nupkg
│   ├── View-Switching.AcceptanceTest
│   │   ├── View-Switching.AcceptanceTest
│   │   │   ├── App.config
│   │   │   ├── Desktop
│   │   │   │   └── ViewSwitchingNavigationFixture.cs
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── TestData
│   │   │   │   ├── ControlIdentifiers.resx
│   │   │   │   └── TestDataInput.resx
│   │   │   ├── TestEntities
│   │   │   │   ├── Assertion
│   │   │   │   │   └── ViewSwitchingNavigationAssertion.cs
│   │   │   │   └── Page
│   │   │   │   └── ViewSwitchingNavigationPage.cs
│   │   │   └── View-Switching.AcceptanceTest.csproj
│   │   └── View-Switching.AcceptanceTest.sln
│   ├── ViewSwitchingNavigation
│   │   ├── App.config
│   │   ├── App.xaml
│   │   ├── App.xaml.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── de
│   │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── en
│   │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── es
│   │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── fr
│   │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── it
│   │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── ja
│   │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── ko
│   │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── Microsoft.Expression.Interactions.dll
│   │   │   ├── Microsoft.Practices.Prism.Composition.dll
│   │   │   ├── Microsoft.Practices.Prism.Composition.xml
│   │   │   ├── Microsoft.Practices.Prism.Interactivity.dll
│   │   │   ├── Microsoft.Practices.Prism.Interactivity.xml
│   │   │   ├── Microsoft.Practices.Prism.MefExtensions.dll
│   │   │   ├── Microsoft.Practices.Prism.MefExtensions.xml
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.dll
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.xml
│   │   │   ├── Microsoft.Practices.Prism.PubSubEvents.dll
│   │   │   ├── Microsoft.Practices.Prism.SharedInterfaces.dll
│   │   │   ├── Microsoft.Practices.Prism.SharedInterfaces.xml
│   │   │   ├── Microsoft.Practices.ServiceLocation.dll
│   │   │   ├── Microsoft.Practices.ServiceLocation.pdb
│   │   │   ├── Microsoft.Practices.ServiceLocation.xml
│   │   │   ├── ru
│   │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── System.Windows.Interactivity.dll
│   │   │   ├── ViewSwitchingNavigation.Calendar.dll
│   │   │   ├── ViewSwitchingNavigation.Calendar.pdb
│   │   │   ├── ViewSwitchingNavigation.Contacts.dll
│   │   │   ├── ViewSwitchingNavigation.Contacts.pdb
│   │   │   ├── ViewSwitchingNavigation.Controls.dll
│   │   │   ├── ViewSwitchingNavigation.Controls.pdb
│   │   │   ├── ViewSwitchingNavigation.Email.dll
│   │   │   ├── ViewSwitchingNavigation.Email.pdb
│   │   │   ├── ViewSwitchingNavigation.exe
│   │   │   ├── ViewSwitchingNavigation.exe.config
│   │   │   ├── ViewSwitchingNavigation.Infrastructure.dll
│   │   │   ├── ViewSwitchingNavigation.Infrastructure.pdb
│   │   │   ├── ViewSwitchingNavigation.pdb
│   │   │   ├── ViewSwitchingNavigation.vshost.exe
│   │   │   ├── ViewSwitchingNavigation.vshost.exe.config
│   │   │   ├── ViewSwitchingNavigation.vshost.exe.manifest
│   │   │   ├── zh-Hans
│   │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   └── zh-Hant
│   │   │   ├── Microsoft.Expression.Interactions.resources.dll
│   │   │   └── System.Windows.Interactivity.resources.dll
│   │   ├── MainWindow.xaml
│   │   ├── MainWindow.xaml.cs
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── App.baml
│   │   │   ├── App.g.cs
│   │   │   ├── App.g.i.cs
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── MainWindow.baml
│   │   │   ├── MainWindow.g.cs
│   │   │   ├── MainWindow.g.i.cs
│   │   │   ├── Shell.baml
│   │   │   ├── Shell.g.cs
│   │   │   ├── Shell.g.i.cs
│   │   │   ├── Styles.baml
│   │   │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   │   ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   │   ├── TempPE
│   │   │   ├── Theme
│   │   │   │   └── Theme.baml
│   │   │   ├── ViewSwitchingNavigation.csproj.FileListAbsolute.txt
│   │   │   ├── ViewSwitchingNavigation.csproj.GenerateResource.Cache
│   │   │   ├── ViewSwitchingNavigation.csprojResolveAssemblyReference.cache
│   │   │   ├── ViewSwitchingNavigation.exe
│   │   │   ├── ViewSwitchingNavigation.g.resources
│   │   │   ├── ViewSwitchingNavigation_MarkupCompile.cache
│   │   │   ├── ViewSwitchingNavigation_MarkupCompile.i.cache
│   │   │   ├── ViewSwitchingNavigation.pdb
│   │   │   └── ViewSwitchingNavigation.Properties.Resources.resources
│   │   ├── packages.config
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── QuickStartBootstrapper.cs
│   │   ├── Shell.xaml
│   │   ├── Shell.xaml.cs
│   │   ├── Styles.xaml
│   │   ├── Theme
│   │   │   └── Theme.xaml
│   │   └── ViewSwitchingNavigation.csproj
│   ├── ViewSwitchingNavigation.Calendar
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── de
│   │   │   │   └── Microsoft.Expression.Drawing.resources.dll
│   │   │   ├── es
│   │   │   │   └── Microsoft.Expression.Drawing.resources.dll
│   │   │   ├── fr
│   │   │   │   └── Microsoft.Expression.Drawing.resources.dll
│   │   │   ├── it
│   │   │   │   └── Microsoft.Expression.Drawing.resources.dll
│   │   │   ├── ja
│   │   │   │   └── Microsoft.Expression.Drawing.resources.dll
│   │   │   ├── ko
│   │   │   │   └── Microsoft.Expression.Drawing.resources.dll
│   │   │   ├── Microsoft.Expression.Drawing.dll
│   │   │   ├── Microsoft.Practices.Prism.Composition.dll
│   │   │   ├── Microsoft.Practices.Prism.Composition.xml
│   │   │   ├── Microsoft.Practices.Prism.MefExtensions.dll
│   │   │   ├── Microsoft.Practices.Prism.MefExtensions.xml
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.Desktop.dll
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.dll
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.xml
│   │   │   ├── Microsoft.Practices.Prism.SharedInterfaces.dll
│   │   │   ├── Microsoft.Practices.Prism.SharedInterfaces.xml
│   │   │   ├── Microsoft.Practices.ServiceLocation.dll
│   │   │   ├── Microsoft.Practices.ServiceLocation.pdb
│   │   │   ├── Microsoft.Practices.ServiceLocation.xml
│   │   │   ├── ru
│   │   │   │   └── Microsoft.Expression.Drawing.resources.dll
│   │   │   ├── ViewSwitchingNavigation.Calendar.dll
│   │   │   ├── ViewSwitchingNavigation.Calendar.pdb
│   │   │   ├── ViewSwitchingNavigation.Controls.dll
│   │   │   ├── ViewSwitchingNavigation.Controls.pdb
│   │   │   ├── ViewSwitchingNavigation.Infrastructure.dll
│   │   │   ├── ViewSwitchingNavigation.Infrastructure.pdb
│   │   │   ├── zh-Hans
│   │   │   │   └── Microsoft.Expression.Drawing.resources.dll
│   │   │   └── zh-Hant
│   │   │   └── Microsoft.Expression.Drawing.resources.dll
│   │   ├── CalendarModule.cs
│   │   ├── Model
│   │   │   ├── CalendarService.cs
│   │   │   ├── ICalendarService.cs
│   │   │   └── Meeting.cs
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   │   ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   │   ├── TempPE
│   │   │   ├── Views
│   │   │   │   ├── CalendarNavigationItemView.baml
│   │   │   │   ├── CalendarNavigationItemView.g.cs
│   │   │   │   ├── CalendarNavigationItemView.g.i.cs
│   │   │   │   ├── CalendarView.baml
│   │   │   │   ├── CalendarView.g.cs
│   │   │   │   └── CalendarView.g.i.cs
│   │   │   ├── ViewSwitchingNavigation.Calendar.csproj.FileListAbsolute.txt
│   │   │   ├── ViewSwitchingNavigation.Calendar.csproj.GenerateResource.Cache
│   │   │   ├── ViewSwitchingNavigation.Calendar.csprojResolveAssemblyReference.cache
│   │   │   ├── ViewSwitchingNavigation.Calendar.dll
│   │   │   ├── ViewSwitchingNavigation.Calendar.g.resources
│   │   │   ├── ViewSwitchingNavigation.Calendar_MarkupCompile.cache
│   │   │   ├── ViewSwitchingNavigation.Calendar_MarkupCompile.i.cache
│   │   │   ├── ViewSwitchingNavigation.Calendar.pdb
│   │   │   └── ViewSwitchingNavigation.Calendar.Properties.Resources.resources
│   │   ├── packages.config
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── ViewModels
│   │   │   └── CalendarViewModel.cs
│   │   ├── Views
│   │   │   ├── CalendarNavigationItemView.xaml
│   │   │   ├── CalendarNavigationItemView.xaml.cs
│   │   │   ├── CalendarView.xaml
│   │   │   └── CalendarView.xaml.cs
│   │   └── ViewSwitchingNavigation.Calendar.csproj
│   ├── ViewSwitchingNavigation.Calendar.Tests
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── Microsoft.Practices.Prism.Composition.dll
│   │   │   ├── Microsoft.Practices.Prism.Composition.xml
│   │   │   ├── Microsoft.Practices.Prism.MefExtensions.dll
│   │   │   ├── Microsoft.Practices.Prism.MefExtensions.xml
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.dll
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.xml
│   │   │   ├── Microsoft.Practices.Prism.SharedInterfaces.dll
│   │   │   ├── Microsoft.Practices.Prism.SharedInterfaces.xml
│   │   │   ├── Microsoft.Practices.ServiceLocation.dll
│   │   │   ├── Microsoft.Practices.ServiceLocation.pdb
│   │   │   ├── Microsoft.Practices.ServiceLocation.xml
│   │   │   ├── Moq.dll
│   │   │   ├── Moq.xml
│   │   │   ├── ViewSwitchingNavigation.Calendar.dll
│   │   │   ├── ViewSwitchingNavigation.Calendar.pdb
│   │   │   ├── ViewSwitchingNavigation.Calendar.Tests.dll
│   │   │   ├── ViewSwitchingNavigation.Calendar.Tests.pdb
│   │   │   ├── ViewSwitchingNavigation.Infrastructure.dll
│   │   │   └── ViewSwitchingNavigation.Infrastructure.pdb
│   │   ├── CalendarViewModelFixture.cs
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   │   ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   │   ├── TempPE
│   │   │   ├── ViewSwitchingNavigation.Calendar.Tests.csproj.FileListAbsolute.txt
│   │   │   ├── ViewSwitchingNavigation.Calendar.Tests.csprojResolveAssemblyReference.cache
│   │   │   ├── ViewSwitchingNavigation.Calendar.Tests.dll
│   │   │   └── ViewSwitchingNavigation.Calendar.Tests.pdb
│   │   ├── packages.config
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   └── ViewSwitchingNavigation.Calendar.Tests.csproj
│   ├── ViewSwitchingNavigation.Contacts
│   │   ├── Avatars
│   │   │   ├── MC900432625.PNG
│   │   │   ├── MC900433938.PNG
│   │   │   ├── MC900433946.PNG
│   │   │   └── MC900434899.PNG
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── de
│   │   │   │   └── Microsoft.Expression.Drawing.resources.dll
│   │   │   ├── es
│   │   │   │   └── Microsoft.Expression.Drawing.resources.dll
│   │   │   ├── fr
│   │   │   │   └── Microsoft.Expression.Drawing.resources.dll
│   │   │   ├── it
│   │   │   │   └── Microsoft.Expression.Drawing.resources.dll
│   │   │   ├── ja
│   │   │   │   └── Microsoft.Expression.Drawing.resources.dll
│   │   │   ├── ko
│   │   │   │   └── Microsoft.Expression.Drawing.resources.dll
│   │   │   ├── Microsoft.Expression.Drawing.dll
│   │   │   ├── Microsoft.Practices.Prism.Composition.dll
│   │   │   ├── Microsoft.Practices.Prism.Composition.xml
│   │   │   ├── Microsoft.Practices.Prism.MefExtensions.dll
│   │   │   ├── Microsoft.Practices.Prism.MefExtensions.xml
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.Desktop.dll
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.dll
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.xml
│   │   │   ├── Microsoft.Practices.Prism.PubSubEvents.dll
│   │   │   ├── Microsoft.Practices.Prism.SharedInterfaces.dll
│   │   │   ├── Microsoft.Practices.Prism.SharedInterfaces.xml
│   │   │   ├── Microsoft.Practices.ServiceLocation.dll
│   │   │   ├── Microsoft.Practices.ServiceLocation.pdb
│   │   │   ├── Microsoft.Practices.ServiceLocation.xml
│   │   │   ├── ru
│   │   │   │   └── Microsoft.Expression.Drawing.resources.dll
│   │   │   ├── ViewSwitchingNavigation.Contacts.dll
│   │   │   ├── ViewSwitchingNavigation.Contacts.pdb
│   │   │   ├── ViewSwitchingNavigation.Controls.dll
│   │   │   ├── ViewSwitchingNavigation.Controls.pdb
│   │   │   ├── ViewSwitchingNavigation.Infrastructure.dll
│   │   │   ├── ViewSwitchingNavigation.Infrastructure.pdb
│   │   │   ├── zh-Hans
│   │   │   │   └── Microsoft.Expression.Drawing.resources.dll
│   │   │   └── zh-Hant
│   │   │   └── Microsoft.Expression.Drawing.resources.dll
│   │   ├── ContactsModule.cs
│   │   ├── ContactsRegionNames.cs
│   │   ├── Model
│   │   │   ├── Contact.cs
│   │   │   ├── ContactsService.cs
│   │   │   └── IContactsService.cs
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   │   ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   │   ├── TempPE
│   │   │   ├── Views
│   │   │   │   ├── ContactAvatarView.baml
│   │   │   │   ├── ContactAvatarView.g.cs
│   │   │   │   ├── ContactAvatarView.g.i.cs
│   │   │   │   ├── ContactDetailView.baml
│   │   │   │   ├── ContactDetailView.g.cs
│   │   │   │   ├── ContactDetailView.g.i.cs
│   │   │   │   ├── ContactsAvatarNavigationItemView.baml
│   │   │   │   ├── ContactsAvatarNavigationItemView.g.cs
│   │   │   │   ├── ContactsAvatarNavigationItemView.g.i.cs
│   │   │   │   ├── ContactsDetailNavigationItemView.baml
│   │   │   │   ├── ContactsDetailNavigationItemView.g.cs
│   │   │   │   ├── ContactsDetailNavigationItemView.g.i.cs
│   │   │   │   ├── ContactsView.baml
│   │   │   │   ├── ContactsView.g.cs
│   │   │   │   └── ContactsView.g.i.cs
│   │   │   ├── ViewSwitchingNavigation.Contacts.csproj.FileListAbsolute.txt
│   │   │   ├── ViewSwitchingNavigation.Contacts.csproj.GenerateResource.Cache
│   │   │   ├── ViewSwitchingNavigation.Contacts.csprojResolveAssemblyReference.cache
│   │   │   ├── ViewSwitchingNavigation.Contacts.dll
│   │   │   ├── ViewSwitchingNavigation.Contacts.g.resources
│   │   │   ├── ViewSwitchingNavigation.Contacts_MarkupCompile.cache
│   │   │   ├── ViewSwitchingNavigation.Contacts_MarkupCompile.i.cache
│   │   │   ├── ViewSwitchingNavigation.Contacts_MarkupCompile.lref
│   │   │   ├── ViewSwitchingNavigation.Contacts.pdb
│   │   │   └── ViewSwitchingNavigation.Contacts.Properties.Resources.resources
│   │   ├── packages.config
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── ViewModels
│   │   │   └── ContactsViewModel.cs
│   │   ├── Views
│   │   │   ├── ContactAvatarView.xaml
│   │   │   ├── ContactAvatarView.xaml.cs
│   │   │   ├── ContactDetailView.xaml
│   │   │   ├── ContactDetailView.xaml.cs
│   │   │   ├── ContactsAvatarNavigationItemView.xaml
│   │   │   ├── ContactsAvatarNavigationItemView.xaml.cs
│   │   │   ├── ContactsDetailNavigationItemView.xaml
│   │   │   ├── ContactsDetailNavigationItemView.xaml.cs
│   │   │   ├── ContactsView.xaml
│   │   │   └── ContactsView.xaml.cs
│   │   └── ViewSwitchingNavigation.Contacts.csproj
│   ├── ViewSwitchingNavigation.Contacts.Tests
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── Microsoft.Practices.Prism.Composition.dll
│   │   │   ├── Microsoft.Practices.Prism.Composition.xml
│   │   │   ├── Microsoft.Practices.Prism.MefExtensions.dll
│   │   │   ├── Microsoft.Practices.Prism.MefExtensions.xml
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.Desktop.dll
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.dll
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.xml
│   │   │   ├── Microsoft.Practices.Prism.PubSubEvents.dll
│   │   │   ├── Microsoft.Practices.Prism.SharedInterfaces.dll
│   │   │   ├── Microsoft.Practices.Prism.SharedInterfaces.xml
│   │   │   ├── Microsoft.Practices.ServiceLocation.dll
│   │   │   ├── Microsoft.Practices.ServiceLocation.pdb
│   │   │   ├── Microsoft.Practices.ServiceLocation.xml
│   │   │   ├── Moq.dll
│   │   │   ├── Moq.xml
│   │   │   ├── ViewSwitchingNavigation.Contacts.dll
│   │   │   ├── ViewSwitchingNavigation.Contacts.pdb
│   │   │   ├── ViewSwitchingNavigation.Contacts.Tests.dll
│   │   │   ├── ViewSwitchingNavigation.Contacts.Tests.pdb
│   │   │   ├── ViewSwitchingNavigation.Infrastructure.dll
│   │   │   └── ViewSwitchingNavigation.Infrastructure.pdb
│   │   ├── ContactsViewModelFixture.cs
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   │   ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   │   ├── TempPE
│   │   │   ├── ViewSwitchingNavigation.Contacts.Tests.csproj.FileListAbsolute.txt
│   │   │   ├── ViewSwitchingNavigation.Contacts.Tests.csprojResolveAssemblyReference.cache
│   │   │   ├── ViewSwitchingNavigation.Contacts.Tests.dll
│   │   │   └── ViewSwitchingNavigation.Contacts.Tests.pdb
│   │   ├── packages.config
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   └── ViewSwitchingNavigation.Contacts.Tests.csproj
│   ├── ViewSwitchingNavigation.Controls
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── ViewSwitchingNavigation.Controls.dll
│   │   │   └── ViewSwitchingNavigation.Controls.pdb
│   │   ├── BusyIndicator.xaml
│   │   ├── BusyIndicator.xaml.cs
│   │   ├── Images
│   │   │   └── Info.png
│   │   ├── InfoTipToggleButton.xaml
│   │   ├── InfoTipToggleButton.xaml.cs
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── BusyIndicator.baml
│   │   │   ├── BusyIndicator.g.cs
│   │   │   ├── BusyIndicator.g.i.cs
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── InfoTipToggleButton.baml
│   │   │   ├── InfoTipToggleButton.g.cs
│   │   │   ├── InfoTipToggleButton.g.i.cs
│   │   │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   │   ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   │   ├── TempPE
│   │   │   ├── ViewSwitchingNavigation.Controls.csproj.FileListAbsolute.txt
│   │   │   ├── ViewSwitchingNavigation.Controls.csproj.GenerateResource.Cache
│   │   │   ├── ViewSwitchingNavigation.Controls.dll
│   │   │   ├── ViewSwitchingNavigation.Controls.g.resources
│   │   │   ├── ViewSwitchingNavigation.Controls_MarkupCompile.cache
│   │   │   ├── ViewSwitchingNavigation.Controls_MarkupCompile.i.cache
│   │   │   ├── ViewSwitchingNavigation.Controls.pdb
│   │   │   └── ViewSwitchingNavigation.Controls.Properties.Resources.resources
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   └── ViewSwitchingNavigation.Controls.csproj
│   ├── ViewSwitchingNavigation.Email
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── de
│   │   │   │   ├── Microsoft.Expression.Drawing.resources.dll
│   │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── en
│   │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── es
│   │   │   │   ├── Microsoft.Expression.Drawing.resources.dll
│   │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── fr
│   │   │   │   ├── Microsoft.Expression.Drawing.resources.dll
│   │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── it
│   │   │   │   ├── Microsoft.Expression.Drawing.resources.dll
│   │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── ja
│   │   │   │   ├── Microsoft.Expression.Drawing.resources.dll
│   │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── ko
│   │   │   │   ├── Microsoft.Expression.Drawing.resources.dll
│   │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── Microsoft.Expression.Drawing.dll
│   │   │   ├── Microsoft.Expression.Interactions.dll
│   │   │   ├── Microsoft.Practices.Prism.Composition.dll
│   │   │   ├── Microsoft.Practices.Prism.Composition.xml
│   │   │   ├── Microsoft.Practices.Prism.Interactivity.dll
│   │   │   ├── Microsoft.Practices.Prism.Interactivity.xml
│   │   │   ├── Microsoft.Practices.Prism.MefExtensions.dll
│   │   │   ├── Microsoft.Practices.Prism.MefExtensions.xml
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.Desktop.dll
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.dll
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.xml
│   │   │   ├── Microsoft.Practices.Prism.SharedInterfaces.dll
│   │   │   ├── Microsoft.Practices.Prism.SharedInterfaces.xml
│   │   │   ├── Microsoft.Practices.ServiceLocation.dll
│   │   │   ├── Microsoft.Practices.ServiceLocation.pdb
│   │   │   ├── Microsoft.Practices.ServiceLocation.xml
│   │   │   ├── ru
│   │   │   │   ├── Microsoft.Expression.Drawing.resources.dll
│   │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── System.Windows.Interactivity.dll
│   │   │   ├── ViewSwitchingNavigation.Controls.dll
│   │   │   ├── ViewSwitchingNavigation.Controls.pdb
│   │   │   ├── ViewSwitchingNavigation.Email.dll
│   │   │   ├── ViewSwitchingNavigation.Email.pdb
│   │   │   ├── ViewSwitchingNavigation.Infrastructure.dll
│   │   │   ├── ViewSwitchingNavigation.Infrastructure.pdb
│   │   │   ├── zh-Hans
│   │   │   │   ├── Microsoft.Expression.Drawing.resources.dll
│   │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   └── zh-Hant
│   │   │   ├── Microsoft.Expression.Drawing.resources.dll
│   │   │   ├── Microsoft.Expression.Interactions.resources.dll
│   │   │   └── System.Windows.Interactivity.resources.dll
│   │   ├── EmailModule.cs
│   │   ├── Model
│   │   │   ├── EmailDocument.cs
│   │   │   ├── EmailService.cs
│   │   │   └── IEmailService.cs
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   │   ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   │   ├── TempPE
│   │   │   ├── Views
│   │   │   │   ├── ComposeEmailView.baml
│   │   │   │   ├── ComposeEmailView.g.cs
│   │   │   │   ├── ComposeEmailView.g.i.cs
│   │   │   │   ├── EmailNavigationItemView.baml
│   │   │   │   ├── EmailNavigationItemView.g.cs
│   │   │   │   ├── EmailNavigationItemView.g.i.cs
│   │   │   │   ├── EmailView.baml
│   │   │   │   ├── EmailView.g.cs
│   │   │   │   ├── EmailView.g.i.cs
│   │   │   │   ├── InboxView.baml
│   │   │   │   ├── InboxView.g.cs
│   │   │   │   └── InboxView.g.i.cs
│   │   │   ├── ViewSwitchingNavigation.Email.csproj.FileListAbsolute.txt
│   │   │   ├── ViewSwitchingNavigation.Email.csproj.GenerateResource.Cache
│   │   │   ├── ViewSwitchingNavigation.Email.csprojResolveAssemblyReference.cache
│   │   │   ├── ViewSwitchingNavigation.Email.dll
│   │   │   ├── ViewSwitchingNavigation.Email.g.resources
│   │   │   ├── ViewSwitchingNavigation.Email_MarkupCompile.cache
│   │   │   ├── ViewSwitchingNavigation.Email_MarkupCompile.i.cache
│   │   │   ├── ViewSwitchingNavigation.Email.pdb
│   │   │   └── ViewSwitchingNavigation.Email.Properties.Resources.resources
│   │   ├── packages.config
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── ViewModels
│   │   │   ├── ComposeEmailViewModel.cs
│   │   │   ├── EmailViewModel.cs
│   │   │   └── InboxViewModel.cs
│   │   ├── Views
│   │   │   ├── ComposeEmailView.xaml
│   │   │   ├── ComposeEmailView.xaml.cs
│   │   │   ├── EmailNavigationItemView.xaml
│   │   │   ├── EmailNavigationItemView.xaml.cs
│   │   │   ├── EmailView.xaml
│   │   │   ├── EmailView.xaml.cs
│   │   │   ├── InboxView.xaml
│   │   │   └── InboxView.xaml.cs
│   │   └── ViewSwitchingNavigation.Email.csproj
│   ├── ViewSwitchingNavigation.Email.Tests
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── de
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── en
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── es
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── fr
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── it
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── ja
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── ko
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── Microsoft.Practices.Prism.Composition.dll
│   │   │   ├── Microsoft.Practices.Prism.Composition.xml
│   │   │   ├── Microsoft.Practices.Prism.Interactivity.dll
│   │   │   ├── Microsoft.Practices.Prism.Interactivity.xml
│   │   │   ├── Microsoft.Practices.Prism.MefExtensions.dll
│   │   │   ├── Microsoft.Practices.Prism.MefExtensions.xml
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.Desktop.dll
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.dll
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.xml
│   │   │   ├── Microsoft.Practices.Prism.SharedInterfaces.dll
│   │   │   ├── Microsoft.Practices.Prism.SharedInterfaces.xml
│   │   │   ├── Microsoft.Practices.ServiceLocation.dll
│   │   │   ├── Microsoft.Practices.ServiceLocation.pdb
│   │   │   ├── Microsoft.Practices.ServiceLocation.xml
│   │   │   ├── Moq.dll
│   │   │   ├── Moq.xml
│   │   │   ├── ru
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── System.Windows.Interactivity.dll
│   │   │   ├── ViewSwitchingNavigation.Email.dll
│   │   │   ├── ViewSwitchingNavigation.Email.pdb
│   │   │   ├── ViewSwitchingNavigation.Email.Tests.dll
│   │   │   ├── ViewSwitchingNavigation.Email.Tests.pdb
│   │   │   ├── ViewSwitchingNavigation.Infrastructure.dll
│   │   │   ├── ViewSwitchingNavigation.Infrastructure.pdb
│   │   │   ├── zh-Hans
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   └── zh-Hant
│   │   │   └── System.Windows.Interactivity.resources.dll
│   │   ├── ComposeEmailViewModelFixture.cs
│   │   ├── EmailViewModelFixture.cs
│   │   ├── InboxViewModelFixture.cs
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   │   ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   │   ├── TempPE
│   │   │   ├── ViewSwitchingNavigation.Email.Tests.csproj.FileListAbsolute.txt
│   │   │   ├── ViewSwitchingNavigation.Email.Tests.csprojResolveAssemblyReference.cache
│   │   │   ├── ViewSwitchingNavigation.Email.Tests.dll
│   │   │   └── ViewSwitchingNavigation.Email.Tests.pdb
│   │   ├── packages.config
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   └── ViewSwitchingNavigation.Email.Tests.csproj
│   ├── ViewSwitchingNavigation.Infrastructure
│   │   ├── AsyncResult.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── Microsoft.Practices.Prism.Composition.dll
│   │   │   ├── Microsoft.Practices.Prism.Composition.xml
│   │   │   ├── Microsoft.Practices.Prism.SharedInterfaces.dll
│   │   │   ├── Microsoft.Practices.Prism.SharedInterfaces.xml
│   │   │   ├── Microsoft.Practices.ServiceLocation.dll
│   │   │   ├── Microsoft.Practices.ServiceLocation.pdb
│   │   │   ├── Microsoft.Practices.ServiceLocation.xml
│   │   │   ├── ViewSwitchingNavigation.Infrastructure.dll
│   │   │   └── ViewSwitchingNavigation.Infrastructure.pdb
│   │   ├── DesignDataCollectionView.cs
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   │   ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   │   ├── TempPE
│   │   │   ├── ViewSwitchingNavigation.Infrastructure.csproj.FileListAbsolute.txt
│   │   │   ├── ViewSwitchingNavigation.Infrastructure.csproj.GenerateResource.Cache
│   │   │   ├── ViewSwitchingNavigation.Infrastructure.csprojResolveAssemblyReference.cache
│   │   │   ├── ViewSwitchingNavigation.Infrastructure.dll
│   │   │   ├── ViewSwitchingNavigation.Infrastructure.pdb
│   │   │   └── ViewSwitchingNavigation.Infrastructure.Properties.Resources.resources
│   │   ├── ObjectToVisibilityConverter.cs
│   │   ├── ObservableCommand.cs
│   │   ├── packages.config
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── RegionNames.cs
│   │   └── ViewSwitchingNavigation.Infrastructure.csproj
│   ├── ViewSwitchingNavigation.sln
│   ├── ViewSwitchingNavigation.suo
│   └── ViewSwitchingNavigation.v12.suo
├── Readme.htm
├── Settings.StyleCop
└── StockTrader RI
├── ChartControls
│   ├── bin
│   │   └── Debug
│   │   ├── StockTraderRI.ChartControls.dll
│   │   └── StockTraderRI.ChartControls.pdb
│   ├── Chart.cs
│   ├── ChartItem.cs
│   ├── ChartLines.cs
│   ├── ClipWedge.cs
│   ├── ColorConverter.cs
│   ├── ContinuousAxis.cs
│   ├── ContinuousAxisPanel.cs
│   ├── DiscreteAxis.cs
│   ├── DiscreteAxisPanel.cs
│   ├── GeometryOperation.cs
│   ├── GlobalSuppressions.cs
│   ├── LabelExtractor.cs
│   ├── LineChart.cs
│   ├── LineChartPanel.cs
│   ├── Migrated rules for StockTraderRI.ChartControls.ruleset
│   ├── obj
│   │   └── Debug
│   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   ├── GeneratedInternalTypeHelper.g.cs
│   │   ├── GeneratedInternalTypeHelper.g.i.cs
│   │   ├── StockTraderRI.ChartControls.csproj.FileListAbsolute.txt
│   │   ├── StockTraderRI.ChartControls.csproj.GenerateResource.Cache
│   │   ├── StockTraderRI.ChartControls.csprojResolveAssemblyReference.cache
│   │   ├── StockTraderRI.ChartControls.dll
│   │   ├── StockTraderRI.ChartControls.g.resources
│   │   ├── StockTraderRI.ChartControls_MarkupCompile.cache
│   │   ├── StockTraderRI.ChartControls_MarkupCompile.i.cache
│   │   ├── StockTraderRI.ChartControls_MarkupCompile.lref
│   │   ├── StockTraderRI.ChartControls.pdb
│   │   ├── StockTraderRI.ChartControls.Properties.Resources.resources
│   │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   ├── TempPE
│   │   └── themes
│   │   └── generic.baml
│   ├── PieChart.cs
│   ├── PiePanel.cs
│   ├── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   ├── StockTraderRI.ChartControls.csproj
│   ├── themes
│   │   └── generic.xaml
│   └── ValueExtractor.cs
├── Desktop
│   ├── StockTraderRI
│   │   ├── App.config
│   │   ├── App.xaml
│   │   ├── App.xaml.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── Data
│   │   │   │   ├── MarketHistory.xml
│   │   │   │   └── Market.xml
│   │   │   ├── de
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── en
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── es
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── fr
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── it
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── ja
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── ko
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── Microsoft.Practices.EnterpriseLibrary.Common.dll
│   │   │   ├── Microsoft.Practices.EnterpriseLibrary.Common.xml
│   │   │   ├── Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.dll
│   │   │   ├── Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.xml
│   │   │   ├── Microsoft.Practices.EnterpriseLibrary.Logging.dll
│   │   │   ├── Microsoft.Practices.EnterpriseLibrary.Logging.xml
│   │   │   ├── Microsoft.Practices.Prism.Composition.dll
│   │   │   ├── Microsoft.Practices.Prism.Composition.xml
│   │   │   ├── Microsoft.Practices.Prism.Interactivity.dll
│   │   │   ├── Microsoft.Practices.Prism.Interactivity.xml
│   │   │   ├── Microsoft.Practices.Prism.MefExtensions.dll
│   │   │   ├── Microsoft.Practices.Prism.MefExtensions.xml
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.Desktop.dll
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.dll
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.xml
│   │   │   ├── Microsoft.Practices.Prism.PubSubEvents.dll
│   │   │   ├── Microsoft.Practices.Prism.SharedInterfaces.dll
│   │   │   ├── Microsoft.Practices.Prism.SharedInterfaces.xml
│   │   │   ├── Microsoft.Practices.ServiceLocation.dll
│   │   │   ├── Microsoft.Practices.ServiceLocation.pdb
│   │   │   ├── Microsoft.Practices.ServiceLocation.xml
│   │   │   ├── Newtonsoft.Json.dll
│   │   │   ├── ru
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── Services
│   │   │   │   ├── MarketFeedService.cs
│   │   │   │   └── MarketHistoryService.cs
│   │   │   ├── StockTraderRI.ChartControls.dll
│   │   │   ├── StockTraderRI.ChartControls.pdb
│   │   │   ├── StockTraderRI.exe
│   │   │   ├── StockTraderRI.exe.config
│   │   │   ├── StockTraderRI.Infrastructure.dll
│   │   │   ├── StockTraderRI.Infrastructure.pdb
│   │   │   ├── StockTraderRI.Modules.Market.dll
│   │   │   ├── StockTraderRI.Modules.Market.pdb
│   │   │   ├── StockTraderRI.Modules.News.dll
│   │   │   ├── StockTraderRI.Modules.News.pdb
│   │   │   ├── StockTraderRI.Modules.Position.dll
│   │   │   ├── StockTraderRI.Modules.Position.pdb
│   │   │   ├── StockTraderRI.Modules.Watch.dll
│   │   │   ├── StockTraderRI.Modules.Watch.pdb
│   │   │   ├── StockTraderRI.pdb
│   │   │   ├── StockTraderRI.vshost.exe
│   │   │   ├── StockTraderRI.vshost.exe.config
│   │   │   ├── StockTraderRI.vshost.exe.manifest
│   │   │   ├── SubmittedOrders.xml
│   │   │   ├── System.Windows.Interactivity.dll
│   │   │   ├── zh-Hans
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   └── zh-Hant
│   │   │   └── System.Windows.Interactivity.resources.dll
│   │   ├── Controls
│   │   │   ├── AnimatedTabControl.Desktop.cs
│   │   │   ├── ResearchControl.cs
│   │   │   ├── RoundedBox.xaml
│   │   │   └── RoundedBox.xaml.cs
│   │   ├── EnterpriseLibraryLoggerAdapter.cs
│   │   ├── GlobalSuppressions.cs
│   │   ├── Migrated rules for StockTraderRI.ruleset
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── App.baml
│   │   │   ├── App.g.cs
│   │   │   ├── App.g.i.cs
│   │   │   ├── Controls
│   │   │   │   ├── RoundedBox.baml
│   │   │   │   ├── RoundedBox.g.cs
│   │   │   │   └── RoundedBox.g.i.cs
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── GeneratedInternalTypeHelper.g.cs
│   │   │   ├── GeneratedInternalTypeHelper.g.i.cs
│   │   │   ├── Resources
│   │   │   │   ├── Styles.baml
│   │   │   │   ├── TabItemResource.baml
│   │   │   │   └── WindowRegionResource.baml
│   │   │   ├── Shell.baml
│   │   │   ├── Shell.g.cs
│   │   │   ├── Shell.g.i.cs
│   │   │   ├── StockTraderRI.csproj.FileListAbsolute.txt
│   │   │   ├── StockTraderRI.csproj.GenerateResource.Cache
│   │   │   ├── StockTraderRI.csprojResolveAssemblyReference.cache
│   │   │   ├── StockTraderRI.exe
│   │   │   ├── StockTraderRI.g.resources
│   │   │   ├── StockTraderRI_MarkupCompile.cache
│   │   │   ├── StockTraderRI_MarkupCompile.i.cache
│   │   │   ├── StockTraderRI_MarkupCompile.i.lref
│   │   │   ├── StockTraderRI_MarkupCompile.lref
│   │   │   ├── StockTraderRI.pdb
│   │   │   ├── StockTraderRI.Properties.Resources.resources
│   │   │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   │   ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   │   ├── TempPE
│   │   │   └── Themes
│   │   │   └── generic.baml
│   │   ├── packages.config
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Resources
│   │   │   ├── background.png
│   │   │   ├── ResourceNames.cs
│   │   │   ├── shadow_bl.png
│   │   │   ├── shadow_b.png
│   │   │   ├── shadow_br.png
│   │   │   ├── shadow_l.png
│   │   │   ├── shadow_r.png
│   │   │   ├── shadow_tl.png
│   │   │   ├── shadow_t.png
│   │   │   ├── shadow_tr.png
│   │   │   ├── Styles.xaml
│   │   │   ├── TabItemResource.xaml
│   │   │   └── WindowRegionResource.xaml
│   │   ├── ShellViewModel.cs
│   │   ├── Shell.xaml
│   │   ├── Shell.xaml.cs
│   │   ├── StockTraderRIBootstrapper.cs
│   │   ├── StockTraderRIBootstrapper.Desktop.cs
│   │   ├── StockTraderRI.csproj
│   │   ├── Themes
│   │   │   └── generic.xaml
│   │   └── VisibilityToStarHeightConverter.Desktop.cs
│   ├── StockTraderRI.Infrastructure
│   │   ├── Behaviors
│   │   │   ├── AutoPopulateExportedViewsBehavior.cs
│   │   │   ├── DialogActivationBehavior.cs
│   │   │   ├── IViewRegionRegistration.cs
│   │   │   ├── IWindow.cs
│   │   │   ├── RegionPopupBehaviors.cs
│   │   │   ├── ReturnCommandBehavior.cs
│   │   │   ├── ViewExportAttribute.cs
│   │   │   ├── WindowDialogActivationBehavior.Desktop.cs
│   │   │   └── WindowWrapper.Desktop.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── de
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── en
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── es
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── fr
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── it
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── ja
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── ko
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── Microsoft.Practices.Prism.Composition.dll
│   │   │   ├── Microsoft.Practices.Prism.Composition.xml
│   │   │   ├── Microsoft.Practices.Prism.Interactivity.dll
│   │   │   ├── Microsoft.Practices.Prism.Interactivity.xml
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.Desktop.dll
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.dll
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.xml
│   │   │   ├── Microsoft.Practices.Prism.PubSubEvents.dll
│   │   │   ├── Microsoft.Practices.Prism.SharedInterfaces.dll
│   │   │   ├── Microsoft.Practices.Prism.SharedInterfaces.xml
│   │   │   ├── Microsoft.Practices.ServiceLocation.dll
│   │   │   ├── Microsoft.Practices.ServiceLocation.pdb
│   │   │   ├── Microsoft.Practices.ServiceLocation.xml
│   │   │   ├── ru
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── StockTraderRI.Infrastructure.dll
│   │   │   ├── StockTraderRI.Infrastructure.pdb
│   │   │   ├── System.Windows.Interactivity.dll
│   │   │   ├── zh-Hans
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   └── zh-Hant
│   │   │   └── System.Windows.Interactivity.resources.dll
│   │   ├── Converters
│   │   │   ├── CurrencyConverter.cs
│   │   │   ├── DecimalToColorConverter.cs
│   │   │   ├── EnumToBooleanConverter.Desktop.cs
│   │   │   ├── ErrorConverter.cs
│   │   │   ├── PercentConverter.cs
│   │   │   ├── StringToNullableNumberConverter.cs
│   │   │   └── TransactionTypeToStringConverter.cs
│   │   ├── ExtendedHeader.cs
│   │   ├── GlobalSuppressions.cs
│   │   ├── InputValidationException.cs
│   │   ├── Interfaces
│   │   │   ├── IAccountPositionModel.cs
│   │   │   ├── IHeaderInfoProvider.cs
│   │   │   ├── IMarketFeedService.cs
│   │   │   ├── IMarketHistoryService.cs
│   │   │   └── INewsFeedService.cs
│   │   ├── MarketPricesUpdatedEvent.cs
│   │   ├── Migrated rules for StockTraderRI.Infrastructure.ruleset
│   │   ├── Models
│   │   │   ├── AccountPosition.cs
│   │   │   ├── AccountPositionEventArgs.cs
│   │   │   ├── AccountPositionModelEventArgs.cs
│   │   │   ├── MarketHistoryCollection.cs
│   │   │   ├── NewsArticle.cs
│   │   │   └── NewsFeedEventArgs.cs
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── StockTraderRI.Infrastructure.csproj.FileListAbsolute.txt
│   │   │   ├── StockTraderRI.Infrastructure.csproj.GenerateResource.Cache
│   │   │   ├── StockTraderRI.Infrastructure.csprojResolveAssemblyReference.cache
│   │   │   ├── StockTraderRI.Infrastructure.dll
│   │   │   ├── StockTraderRI.Infrastructure.pdb
│   │   │   ├── StockTraderRI.Infrastructure.Properties.Resources.resources
│   │   │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   │   ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   │   └── TempPE
│   │   ├── packages.config
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   └── Resources.resx
│   │   ├── RegionNames.cs
│   │   ├── ReturnKey.cs
│   │   ├── StockTraderRICommands.cs
│   │   ├── StockTraderRI.Infrastructure.csproj
│   │   ├── TickerSymbolSelectedEvent.cs
│   │   ├── TransactionType.cs
│   │   └── TreeHelper.cs
│   ├── StockTraderRI.Infrastructure.Tests
│   │   ├── app.config
│   │   ├── Behaviors
│   │   │   ├── AutoPopulateExportedViewsBehaviorFixture.cs
│   │   │   ├── DialogActivationBehaviorFixture.cs
│   │   │   ├── RegionPopupBehaviorsFixture.cs
│   │   │   ├── ReturnCommandBehaviorFixture.cs
│   │   │   └── WindowWrapperFixture.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── de
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── en
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── es
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── fr
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── it
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── ja
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── ko
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── Microsoft.Practices.Prism.Composition.dll
│   │   │   ├── Microsoft.Practices.Prism.Composition.xml
│   │   │   ├── Microsoft.Practices.Prism.Interactivity.dll
│   │   │   ├── Microsoft.Practices.Prism.Interactivity.xml
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.Desktop.dll
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.dll
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.xml
│   │   │   ├── Microsoft.Practices.Prism.PubSubEvents.dll
│   │   │   ├── Microsoft.Practices.Prism.SharedInterfaces.dll
│   │   │   ├── Microsoft.Practices.Prism.SharedInterfaces.xml
│   │   │   ├── Microsoft.Practices.ServiceLocation.dll
│   │   │   ├── Microsoft.Practices.ServiceLocation.pdb
│   │   │   ├── Microsoft.Practices.ServiceLocation.xml
│   │   │   ├── ru
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── StockTraderRI.Infrastructure.dll
│   │   │   ├── StockTraderRI.Infrastructure.pdb
│   │   │   ├── StockTraderRI.Infrastructure.Tests.dll
│   │   │   ├── StockTraderRI.Infrastructure.Tests.dll.config
│   │   │   ├── StockTraderRI.Infrastructure.Tests.pdb
│   │   │   ├── System.Windows.Interactivity.dll
│   │   │   ├── zh-Hans
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   └── zh-Hant
│   │   │   └── System.Windows.Interactivity.resources.dll
│   │   ├── Converters
│   │   │   ├── CurrencyConverterFixture.cs
│   │   │   ├── DecimalToColorConverterFixture.cs
│   │   │   ├── EnumToBooleanConverterFixture.Desktop.cs
│   │   │   ├── ErrorConverterFixture.cs
│   │   │   ├── PercentConverterFixture.cs
│   │   │   ├── StringToNullableNumberConverterFixture.cs
│   │   │   └── TransactionTypeToStringConverterFixture.cs
│   │   ├── Migrated rules for StockTraderRI.Infrastructure.Tests.ruleset
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── StockTraderRI.Infrastructure.Tests.csproj.FileListAbsolute.txt
│   │   │   ├── StockTraderRI.Infrastructure.Tests.csprojResolveAssemblyReference.cache
│   │   │   ├── StockTraderRI.Infrastructure.Tests.dll
│   │   │   ├── StockTraderRI.Infrastructure.Tests.pdb
│   │   │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   │   ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   │   └── TempPE
│   │   ├── packages.config
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── ReturnKeyFixture.cs
│   │   ├── StockTraderRICommandsFixture.cs
│   │   ├── StockTraderRI.Infrastructure.Tests.csproj
│   │   └── TreeHelperFixture.cs
│   ├── StockTraderRI.Modules.Market
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── Data
│   │   │   │   ├── MarketHistory.xml
│   │   │   │   └── Market.xml
│   │   │   ├── de
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── en
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── es
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── fr
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── it
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── ja
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── ko
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── Microsoft.Practices.Prism.Composition.dll
│   │   │   ├── Microsoft.Practices.Prism.Composition.xml
│   │   │   ├── Microsoft.Practices.Prism.Interactivity.dll
│   │   │   ├── Microsoft.Practices.Prism.Interactivity.xml
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.Desktop.dll
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.dll
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.xml
│   │   │   ├── Microsoft.Practices.Prism.PubSubEvents.dll
│   │   │   ├── Microsoft.Practices.Prism.SharedInterfaces.dll
│   │   │   ├── Microsoft.Practices.Prism.SharedInterfaces.xml
│   │   │   ├── Microsoft.Practices.ServiceLocation.dll
│   │   │   ├── Microsoft.Practices.ServiceLocation.pdb
│   │   │   ├── Microsoft.Practices.ServiceLocation.xml
│   │   │   ├── ru
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── Services
│   │   │   │   ├── MarketFeedService.cs
│   │   │   │   └── MarketHistoryService.cs
│   │   │   ├── StockTraderRI.ChartControls.dll
│   │   │   ├── StockTraderRI.ChartControls.pdb
│   │   │   ├── StockTraderRI.Infrastructure.dll
│   │   │   ├── StockTraderRI.Infrastructure.pdb
│   │   │   ├── StockTraderRI.Modules.Market.dll
│   │   │   ├── StockTraderRI.Modules.Market.pdb
│   │   │   ├── System.Windows.Interactivity.dll
│   │   │   ├── zh-Hans
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   └── zh-Hant
│   │   │   └── System.Windows.Interactivity.resources.dll
│   │   ├── Data
│   │   │   ├── MarketHistory.xml
│   │   │   └── Market.xml
│   │   ├── GlobalSuppressions.cs
│   │   ├── MarketModule.cs
│   │   ├── Migrated rules for StockTraderRI.Modules.Market.ruleset
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── StockTraderRI.Modules.Market.csproj.FileListAbsolute.txt
│   │   │   ├── StockTraderRI.Modules.Market.csproj.GenerateResource.Cache
│   │   │   ├── StockTraderRI.Modules.Market.csprojResolveAssemblyReference.cache
│   │   │   ├── StockTraderRI.Modules.Market.dll
│   │   │   ├── StockTraderRI.Modules.Market.g.resources
│   │   │   ├── StockTraderRI.Modules.Market_MarkupCompile.cache
│   │   │   ├── StockTraderRI.Modules.Market_MarkupCompile.i.cache
│   │   │   ├── StockTraderRI.Modules.Market.pdb
│   │   │   ├── StockTraderRI.Modules.Market.Properties.Resources.resources
│   │   │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   │   ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   │   ├── TempPE
│   │   │   └── TrendLine
│   │   │   ├── TrendLineView.baml
│   │   │   ├── TrendLineView.g.cs
│   │   │   └── TrendLineView.g.i.cs
│   │   ├── packages.config
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   └── Resources.resx
│   │   ├── Services
│   │   │   ├── MarketFeedService.cs
│   │   │   └── MarketHistoryService.cs
│   │   ├── StockTraderRI.Modules.Market.csproj
│   │   └── TrendLine
│   │   ├── TrendLineViewModel.cs
│   │   ├── TrendLineView.xaml
│   │   └── TrendLineView.xaml.cs
│   ├── StockTraderRI.Modules.Market.Tests
│   │   ├── app.config
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── Data
│   │   │   │   ├── MarketHistory.xml
│   │   │   │   └── Market.xml
│   │   │   ├── de
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── en
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── es
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── fr
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── it
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── ja
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── ko
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── Microsoft.Practices.Prism.Composition.dll
│   │   │   ├── Microsoft.Practices.Prism.Composition.xml
│   │   │   ├── Microsoft.Practices.Prism.Interactivity.dll
│   │   │   ├── Microsoft.Practices.Prism.Interactivity.xml
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.Desktop.dll
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.dll
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.xml
│   │   │   ├── Microsoft.Practices.Prism.PubSubEvents.dll
│   │   │   ├── Microsoft.Practices.Prism.SharedInterfaces.dll
│   │   │   ├── Microsoft.Practices.Prism.SharedInterfaces.xml
│   │   │   ├── Microsoft.Practices.ServiceLocation.dll
│   │   │   ├── Microsoft.Practices.ServiceLocation.pdb
│   │   │   ├── Microsoft.Practices.ServiceLocation.xml
│   │   │   ├── Moq.dll
│   │   │   ├── Moq.xml
│   │   │   ├── ru
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── Services
│   │   │   │   ├── MarketFeedService.cs
│   │   │   │   └── MarketHistoryService.cs
│   │   │   ├── StockTraderRI.ChartControls.dll
│   │   │   ├── StockTraderRI.ChartControls.pdb
│   │   │   ├── StockTraderRI.Infrastructure.dll
│   │   │   ├── StockTraderRI.Infrastructure.pdb
│   │   │   ├── StockTraderRI.Modules.Market.dll
│   │   │   ├── StockTraderRI.Modules.Market.pdb
│   │   │   ├── StockTraderRI.Modules.Market.Tests.dll
│   │   │   ├── StockTraderRI.Modules.Market.Tests.dll.config
│   │   │   ├── StockTraderRI.Modules.Market.Tests.pdb
│   │   │   ├── System.Windows.Interactivity.dll
│   │   │   ├── zh-Hans
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   └── zh-Hant
│   │   │   └── System.Windows.Interactivity.resources.dll
│   │   ├── Migrated rules for StockTraderRI.Modules.Market.Tests.ruleset
│   │   ├── Mocks
│   │   │   └── MockMarketHistoryService.cs
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── StockTraderRI.Modules.Market.Tests.csproj.FileListAbsolute.txt
│   │   │   ├── StockTraderRI.Modules.Market.Tests.csproj.GenerateResource.Cache
│   │   │   ├── StockTraderRI.Modules.Market.Tests.csprojResolveAssemblyReference.cache
│   │   │   ├── StockTraderRI.Modules.Market.Tests.dll
│   │   │   ├── StockTraderRI.Modules.Market.Tests.pdb
│   │   │   ├── StockTraderRI.Modules.Market.Tests.Properties.Resources.resources
│   │   │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   │   ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   │   └── TempPE
│   │   ├── packages.config
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   └── Resources.resx
│   │   ├── Services
│   │   │   ├── MarketFeedServiceFixture.cs
│   │   │   └── MarketHistoryServiceFixture.cs
│   │   ├── StockTraderRI.Modules.Market.Tests.csproj
│   │   └── TrendLineView
│   │   └── TrendLineViewModelFixture.cs
│   ├── StockTraderRI.Modules.News
│   │   ├── app.config
│   │   ├── Article
│   │   │   ├── ArticleViewModel.cs
│   │   │   ├── ArticleView.xaml
│   │   │   ├── ArticleView.xaml.cs
│   │   │   ├── NewsReaderViewModel.cs
│   │   │   ├── NewsReaderView.xaml
│   │   │   └── NewsReaderView.xaml.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── de
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── en
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── es
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── fr
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── it
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── ja
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── ko
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── Microsoft.Practices.Prism.Composition.dll
│   │   │   ├── Microsoft.Practices.Prism.Composition.xml
│   │   │   ├── Microsoft.Practices.Prism.Interactivity.dll
│   │   │   ├── Microsoft.Practices.Prism.Interactivity.xml
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.Desktop.dll
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.dll
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.xml
│   │   │   ├── Microsoft.Practices.Prism.PubSubEvents.dll
│   │   │   ├── Microsoft.Practices.Prism.SharedInterfaces.dll
│   │   │   ├── Microsoft.Practices.Prism.SharedInterfaces.xml
│   │   │   ├── Microsoft.Practices.ServiceLocation.dll
│   │   │   ├── Microsoft.Practices.ServiceLocation.pdb
│   │   │   ├── Microsoft.Practices.ServiceLocation.xml
│   │   │   ├── StockTraderRI.Infrastructure.dll
│   │   │   ├── StockTraderRI.Infrastructure.pdb
│   │   │   ├── StockTraderRI.Modules.News.dll
│   │   │   ├── StockTraderRI.Modules.News.dll.config
│   │   │   ├── StockTraderRI.Modules.News.pdb
│   │   │   ├── System.Windows.Interactivity.dll
│   │   │   ├── System.Windows.Interactivity.xml
│   │   │   ├── zh-Hans
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   └── zh-Hant
│   │   │   └── System.Windows.Interactivity.resources.dll
│   │   ├── Controllers
│   │   │   ├── INewsController.cs
│   │   │   └── NewsController.cs
│   │   ├── Data
│   │   │   ├── Images
│   │   │   │   ├── Annotation_New.png
│   │   │   │   └── info.png
│   │   │   └── News.xml
│   │   ├── GlobalSuppressions.cs
│   │   ├── Migrated rules for StockTraderRI.Modules.News.ruleset
│   │   ├── NewsModule.cs
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── Article
│   │   │   │   ├── ArticleView.baml
│   │   │   │   ├── ArticleView.g.cs
│   │   │   │   ├── ArticleView.g.i.cs
│   │   │   │   ├── NewsReaderView.baml
│   │   │   │   ├── NewsReaderView.g.cs
│   │   │   │   └── NewsReaderView.g.i.cs
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── StockTraderRI.Modules.News.csproj.FileListAbsolute.txt
│   │   │   ├── StockTraderRI.Modules.News.csproj.GenerateResource.Cache
│   │   │   ├── StockTraderRI.Modules.News.csprojResolveAssemblyReference.cache
│   │   │   ├── StockTraderRI.Modules.News.dll
│   │   │   ├── StockTraderRI.Modules.News.g.resources
│   │   │   ├── StockTraderRI.Modules.News_MarkupCompile.cache
│   │   │   ├── StockTraderRI.Modules.News_MarkupCompile.i.cache
│   │   │   ├── StockTraderRI.Modules.News.pdb
│   │   │   ├── StockTraderRI.Modules.News.Properties.Resources.resources
│   │   │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   │   ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   │   └── TempPE
│   │   ├── packages.config
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   └── Resources.resx
│   │   ├── Services
│   │   │   └── NewsFeedService.cs
│   │   └── StockTraderRI.Modules.News.csproj
│   ├── StockTraderRI.Modules.News.Tests
│   │   ├── app.config
│   │   ├── Article
│   │   │   ├── ArticleViewModelFixture.cs
│   │   │   └── NewsReaderViewModelFixture.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── de
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── en
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── es
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── fr
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── it
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── ja
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── ko
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── Microsoft.Practices.Prism.Composition.dll
│   │   │   ├── Microsoft.Practices.Prism.Composition.xml
│   │   │   ├── Microsoft.Practices.Prism.Interactivity.dll
│   │   │   ├── Microsoft.Practices.Prism.Interactivity.xml
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.Desktop.dll
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.dll
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.xml
│   │   │   ├── Microsoft.Practices.Prism.PubSubEvents.dll
│   │   │   ├── Microsoft.Practices.Prism.SharedInterfaces.dll
│   │   │   ├── Microsoft.Practices.Prism.SharedInterfaces.xml
│   │   │   ├── Microsoft.Practices.ServiceLocation.dll
│   │   │   ├── Microsoft.Practices.ServiceLocation.pdb
│   │   │   ├── Microsoft.Practices.ServiceLocation.xml
│   │   │   ├── Moq.dll
│   │   │   ├── Moq.xml
│   │   │   ├── ru
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── StockTraderRI.Infrastructure.dll
│   │   │   ├── StockTraderRI.Infrastructure.pdb
│   │   │   ├── StockTraderRI.Modules.News.dll
│   │   │   ├── StockTraderRI.Modules.News.pdb
│   │   │   ├── StockTraderRI.Modules.News.Tests.dll
│   │   │   ├── StockTraderRI.Modules.News.Tests.dll.config
│   │   │   ├── StockTraderRI.Modules.News.Tests.pdb
│   │   │   ├── System.Windows.Interactivity.dll
│   │   │   ├── zh-Hans
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   └── zh-Hant
│   │   │   └── System.Windows.Interactivity.resources.dll
│   │   ├── Controllers
│   │   │   └── NewsControllerFixture.cs
│   │   ├── Migrated rules for StockTraderRI.Modules.News.Tests.ruleset
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── StockTraderRI.Modules.News.Tests.csproj.FileListAbsolute.txt
│   │   │   ├── StockTraderRI.Modules.News.Tests.csprojResolveAssemblyReference.cache
│   │   │   ├── StockTraderRI.Modules.News.Tests.dll
│   │   │   ├── StockTraderRI.Modules.News.Tests.pdb
│   │   │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   │   ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   │   └── TempPE
│   │   ├── packages.config
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Services
│   │   │   └── NewsFeedServiceFixture.cs
│   │   └── StockTraderRI.Modules.News.Tests.csproj
│   ├── StockTraderRI.Modules.Position
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── de
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── en
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── es
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── fr
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── it
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── ja
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── ko
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── Microsoft.Practices.Prism.Composition.dll
│   │   │   ├── Microsoft.Practices.Prism.Composition.xml
│   │   │   ├── Microsoft.Practices.Prism.Interactivity.dll
│   │   │   ├── Microsoft.Practices.Prism.Interactivity.xml
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.Desktop.dll
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.dll
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.xml
│   │   │   ├── Microsoft.Practices.Prism.PubSubEvents.dll
│   │   │   ├── Microsoft.Practices.Prism.SharedInterfaces.dll
│   │   │   ├── Microsoft.Practices.Prism.SharedInterfaces.xml
│   │   │   ├── Microsoft.Practices.ServiceLocation.dll
│   │   │   ├── Microsoft.Practices.ServiceLocation.pdb
│   │   │   ├── Microsoft.Practices.ServiceLocation.xml
│   │   │   ├── ru
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── StockTraderRI.ChartControls.dll
│   │   │   ├── StockTraderRI.ChartControls.pdb
│   │   │   ├── StockTraderRI.Infrastructure.dll
│   │   │   ├── StockTraderRI.Infrastructure.pdb
│   │   │   ├── StockTraderRI.Modules.Position.dll
│   │   │   ├── StockTraderRI.Modules.Position.pdb
│   │   │   ├── System.Windows.Interactivity.dll
│   │   │   ├── zh-Hans
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   └── zh-Hant
│   │   │   └── System.Windows.Interactivity.resources.dll
│   │   ├── Controllers
│   │   │   ├── IOrdersController.cs
│   │   │   └── OrdersController.cs
│   │   ├── Data
│   │   │   └── AccountPositions.xml
│   │   ├── GlobalSuppressions.cs
│   │   ├── Interfaces
│   │   │   ├── IOrdersService.cs
│   │   │   └── IOrdersView.cs
│   │   ├── Migrated rules for StockTraderRI.Modules.Position.ruleset
│   │   ├── Models
│   │   │   ├── Order.cs
│   │   │   └── TransactionInfo.cs
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── GeneratedInternalTypeHelper.g.cs
│   │   │   ├── GeneratedInternalTypeHelper.g.i.cs
│   │   │   ├── Orders
│   │   │   │   ├── OrderCommandsView.baml
│   │   │   │   ├── OrderCommandsView.g.cs
│   │   │   │   ├── OrderCommandsView.g.i.cs
│   │   │   │   ├── OrderCompositeView.baml
│   │   │   │   ├── OrderCompositeView.g.cs
│   │   │   │   ├── OrderCompositeView.g.i.cs
│   │   │   │   ├── OrderDetailsView.baml
│   │   │   │   ├── OrderDetailsView.g.cs
│   │   │   │   ├── OrderDetailsView.g.i.cs
│   │   │   │   ├── OrdersView.baml
│   │   │   │   ├── OrdersView.g.cs
│   │   │   │   └── OrdersView.g.i.cs
│   │   │   ├── PositionSummary
│   │   │   │   ├── PositionPieChartView.baml
│   │   │   │   ├── PositionPieChartView.g.cs
│   │   │   │   ├── PositionPieChartView.g.i.cs
│   │   │   │   ├── PositionSummaryView.baml
│   │   │   │   ├── PositionSummaryView.g.cs
│   │   │   │   └── PositionSummaryView.g.i.cs
│   │   │   ├── StockTraderRI.Modules.Position.csproj.FileListAbsolute.txt
│   │   │   ├── StockTraderRI.Modules.Position.csproj.GenerateResource.Cache
│   │   │   ├── StockTraderRI.Modules.Position.csprojResolveAssemblyReference.cache
│   │   │   ├── StockTraderRI.Modules.Position.dll
│   │   │   ├── StockTraderRI.Modules.Position.g.resources
│   │   │   ├── StockTraderRI.Modules.Position_MarkupCompile.cache
│   │   │   ├── StockTraderRI.Modules.Position_MarkupCompile.i.cache
│   │   │   ├── StockTraderRI.Modules.Position_MarkupCompile.lref
│   │   │   ├── StockTraderRI.Modules.Position.pdb
│   │   │   ├── StockTraderRI.Modules.Position.Properties.Resources.resources
│   │   │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   │   ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   │   └── TempPE
│   │   ├── Orders
│   │   │   ├── IOrderCompositeViewModel.cs
│   │   │   ├── IOrderDetailsViewModel.cs
│   │   │   ├── IOrdersViewModel.cs
│   │   │   ├── IValueDescriptionList.cs
│   │   │   ├── OrderCommandsView.xaml
│   │   │   ├── OrderCommandsView.xaml.cs
│   │   │   ├── OrderCompositeViewModel.cs
│   │   │   ├── OrderCompositeViewModel.Desktop.cs
│   │   │   ├── OrderCompositeView.xaml
│   │   │   ├── OrderCompositeView.xaml.cs
│   │   │   ├── OrderDetailsViewModel.cs
│   │   │   ├── OrderDetailsView.xaml
│   │   │   ├── OrderDetailsView.xaml.cs
│   │   │   ├── OrdersViewModel.cs
│   │   │   ├── OrdersView.xaml
│   │   │   ├── OrdersView.xaml.cs
│   │   │   ├── OrderType.cs
│   │   │   ├── TimeInForce.cs
│   │   │   ├── ValueDescription.cs
│   │   │   └── ValueDescriptionList.cs
│   │   ├── packages.config
│   │   ├── PositionModule.cs
│   │   ├── PositionSummary
│   │   │   ├── IObservablePosition.cs
│   │   │   ├── IPositionPieChartViewModel.cs
│   │   │   ├── IPositionSummaryViewModel.cs
│   │   │   ├── ObservablePosition.cs
│   │   │   ├── PositionPieChartViewModel.cs
│   │   │   ├── PositionPieChartView.xaml
│   │   │   ├── PositionPieChartView.xaml.cs
│   │   │   ├── PositionSummaryItem.cs
│   │   │   ├── PositionSummaryViewModel.cs
│   │   │   ├── PositionSummaryView.xaml
│   │   │   └── PositionSummaryView.xaml.cs
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   └── Resources.resx
│   │   ├── Services
│   │   │   ├── AccountPositionService.cs
│   │   │   └── XmlOrdersService.cs
│   │   └── StockTraderRI.Modules.Position.csproj
│   ├── StockTraderRI.Modules.Position.Tests
│   │   ├── AccountPositionServiceFixture.cs
│   │   ├── app.config
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── de
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── en
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── es
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── fr
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── it
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── ja
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── ko
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── Microsoft.Practices.Prism.Composition.dll
│   │   │   ├── Microsoft.Practices.Prism.Composition.xml
│   │   │   ├── Microsoft.Practices.Prism.Interactivity.dll
│   │   │   ├── Microsoft.Practices.Prism.Interactivity.xml
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.Desktop.dll
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.dll
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.xml
│   │   │   ├── Microsoft.Practices.Prism.PubSubEvents.dll
│   │   │   ├── Microsoft.Practices.Prism.SharedInterfaces.dll
│   │   │   ├── Microsoft.Practices.Prism.SharedInterfaces.xml
│   │   │   ├── Microsoft.Practices.ServiceLocation.dll
│   │   │   ├── Microsoft.Practices.ServiceLocation.pdb
│   │   │   ├── Microsoft.Practices.ServiceLocation.xml
│   │   │   ├── Moq.dll
│   │   │   ├── Moq.xml
│   │   │   ├── ru
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── StockTraderRI.ChartControls.dll
│   │   │   ├── StockTraderRI.ChartControls.pdb
│   │   │   ├── StockTraderRI.Infrastructure.dll
│   │   │   ├── StockTraderRI.Infrastructure.pdb
│   │   │   ├── StockTraderRI.Modules.Position.dll
│   │   │   ├── StockTraderRI.Modules.Position.pdb
│   │   │   ├── StockTraderRI.Modules.Position.Tests.dll
│   │   │   ├── StockTraderRI.Modules.Position.Tests.dll.config
│   │   │   ├── StockTraderRI.Modules.Position.Tests.pdb
│   │   │   ├── System.Windows.Interactivity.dll
│   │   │   ├── zh-Hans
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   └── zh-Hant
│   │   │   └── System.Windows.Interactivity.resources.dll
│   │   ├── Controllers
│   │   │   └── OrdersControllerFixture.cs
│   │   ├── Migrated rules for StockTraderRI.Modules.Position.Tests.ruleset
│   │   ├── Mocks
│   │   │   ├── MockAccountPositionService.cs
│   │   │   ├── MockLogger.cs
│   │   │   ├── MockMarketFeedService.cs
│   │   │   ├── MockMarketHistoryService.cs
│   │   │   ├── MockOrderDetailsPresentationModel.cs
│   │   │   ├── MockOrdersController.cs
│   │   │   ├── MockRegionManager.cs
│   │   │   └── MockStockTraderRICommandProxy.cs
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── StockTraderRI.Modules.Position.Tests.csproj.FileListAbsolute.txt
│   │   │   ├── StockTraderRI.Modules.Position.Tests.csprojResolveAssemblyReference.cache
│   │   │   ├── StockTraderRI.Modules.Position.Tests.dll
│   │   │   ├── StockTraderRI.Modules.Position.Tests.pdb
│   │   │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   │   ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   │   └── TempPE
│   │   ├── Orders
│   │   │   ├── OrderCompositeViewModelFixture.cs
│   │   │   └── OrderDetailsViewModelFixture.cs
│   │   ├── packages.config
│   │   ├── PositionSummary
│   │   │   ├── ObservablePositionFixture.cs
│   │   │   ├── PositionPieChartViewModelFixture.cs
│   │   │   ├── PositionSummaryItemFixture.cs
│   │   │   └── PositionSummaryViewModelFixture.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Services
│   │   │   └── XmlOrdersServiceFixture.cs
│   │   └── StockTraderRI.Modules.Position.Tests.csproj
│   ├── StockTraderRI.Modules.WatchList
│   │   ├── AddWatch
│   │   │   ├── AddWatchViewModel.cs
│   │   │   ├── AddWatchView.xaml
│   │   │   └── AddWatchView.xaml.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── de
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── en
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── es
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── fr
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── it
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── ja
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── ko
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── Microsoft.Practices.Prism.Composition.dll
│   │   │   ├── Microsoft.Practices.Prism.Composition.xml
│   │   │   ├── Microsoft.Practices.Prism.Interactivity.dll
│   │   │   ├── Microsoft.Practices.Prism.Interactivity.xml
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.Desktop.dll
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.dll
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.xml
│   │   │   ├── Microsoft.Practices.Prism.PubSubEvents.dll
│   │   │   ├── Microsoft.Practices.Prism.SharedInterfaces.dll
│   │   │   ├── Microsoft.Practices.Prism.SharedInterfaces.xml
│   │   │   ├── Microsoft.Practices.ServiceLocation.dll
│   │   │   ├── Microsoft.Practices.ServiceLocation.pdb
│   │   │   ├── Microsoft.Practices.ServiceLocation.xml
│   │   │   ├── ru
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   ├── StockTraderRI.Infrastructure.dll
│   │   │   ├── StockTraderRI.Infrastructure.pdb
│   │   │   ├── StockTraderRI.Modules.Watch.dll
│   │   │   ├── StockTraderRI.Modules.Watch.pdb
│   │   │   ├── System.Windows.Interactivity.dll
│   │   │   ├── zh-Hans
│   │   │   │   └── System.Windows.Interactivity.resources.dll
│   │   │   └── zh-Hant
│   │   │   └── System.Windows.Interactivity.resources.dll
│   │   ├── GlobalSuppressions.cs
│   │   ├── Migrated rules for StockTraderRI.Modules.Watch.ruleset
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── AddWatch
│   │   │   │   ├── AddWatchView.baml
│   │   │   │   ├── AddWatchView.g.cs
│   │   │   │   └── AddWatchView.g.i.cs
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── StockTraderRI.Modules.Watch.csproj.FileListAbsolute.txt
│   │   │   ├── StockTraderRI.Modules.Watch.csproj.GenerateResource.Cache
│   │   │   ├── StockTraderRI.Modules.Watch.csprojResolveAssemblyReference.cache
│   │   │   ├── StockTraderRI.Modules.Watch.dll
│   │   │   ├── StockTraderRI.Modules.Watch.g.resources
│   │   │   ├── StockTraderRI.Modules.Watch_MarkupCompile.cache
│   │   │   ├── StockTraderRI.Modules.Watch_MarkupCompile.i.cache
│   │   │   ├── StockTraderRI.Modules.Watch.pdb
│   │   │   ├── StockTraderRI.Modules.Watch.Properties.Resources.resources
│   │   │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   │   ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   │   ├── TempPE
│   │   │   └── WatchList
│   │   │   ├── WatchListView.baml
│   │   │   ├── WatchListView.g.cs
│   │   │   └── WatchListView.g.i.cs
│   │   ├── packages.config
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   └── Resources.resx
│   │   ├── Services
│   │   │   ├── IWatchListService.cs
│   │   │   └── WatchListService.cs
│   │   ├── StockTraderRI.Modules.Watch.csproj
│   │   ├── WatchItem.cs
│   │   ├── WatchList
│   │   │   ├── WatchListViewModel.cs
│   │   │   ├── WatchListView.xaml
│   │   │   └── WatchListView.xaml.cs
│   │   └── WatchModule.cs
│   └── StockTraderRI.Modules.WatchList.Tests
│   ├── AddWatch
│   │   └── AddWatchViewModelFixture.cs
│   ├── app.config
│   ├── bin
│   │   └── Debug
│   │   ├── de
│   │   │   └── System.Windows.Interactivity.resources.dll
│   │   ├── en
│   │   │   └── System.Windows.Interactivity.resources.dll
│   │   ├── es
│   │   │   └── System.Windows.Interactivity.resources.dll
│   │   ├── fr
│   │   │   └── System.Windows.Interactivity.resources.dll
│   │   ├── it
│   │   │   └── System.Windows.Interactivity.resources.dll
│   │   ├── ja
│   │   │   └── System.Windows.Interactivity.resources.dll
│   │   ├── ko
│   │   │   └── System.Windows.Interactivity.resources.dll
│   │   ├── Microsoft.Practices.Prism.Composition.dll
│   │   ├── Microsoft.Practices.Prism.Composition.xml
│   │   ├── Microsoft.Practices.Prism.Interactivity.dll
│   │   ├── Microsoft.Practices.Prism.Interactivity.xml
│   │   ├── Microsoft.Practices.Prism.Mvvm.Desktop.dll
│   │   ├── Microsoft.Practices.Prism.Mvvm.dll
│   │   ├── Microsoft.Practices.Prism.Mvvm.xml
│   │   ├── Microsoft.Practices.Prism.PubSubEvents.dll
│   │   ├── Microsoft.Practices.Prism.SharedInterfaces.dll
│   │   ├── Microsoft.Practices.Prism.SharedInterfaces.xml
│   │   ├── Microsoft.Practices.ServiceLocation.dll
│   │   ├── Microsoft.Practices.ServiceLocation.pdb
│   │   ├── Microsoft.Practices.ServiceLocation.xml
│   │   ├── Moq.dll
│   │   ├── Moq.xml
│   │   ├── ru
│   │   │   └── System.Windows.Interactivity.resources.dll
│   │   ├── StockTraderRI.Infrastructure.dll
│   │   ├── StockTraderRI.Infrastructure.pdb
│   │   ├── StockTraderRI.Modules.Watch.dll
│   │   ├── StockTraderRI.Modules.WatchList.Tests.dll
│   │   ├── StockTraderRI.Modules.WatchList.Tests.dll.config
│   │   ├── StockTraderRI.Modules.WatchList.Tests.pdb
│   │   ├── StockTraderRI.Modules.Watch.pdb
│   │   ├── System.Windows.Interactivity.dll
│   │   ├── zh-Hans
│   │   │   └── System.Windows.Interactivity.resources.dll
│   │   └── zh-Hant
│   │   └── System.Windows.Interactivity.resources.dll
│   ├── Migrated rules for StockTraderRI.Modules.Watch.Tests.ruleset
│   ├── Mocks
│   │   └── MockMarketFeedService.cs
│   ├── obj
│   │   └── Debug
│   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   ├── StockTraderRI.Modules.WatchList.Tests.dll
│   │   ├── StockTraderRI.Modules.WatchList.Tests.pdb
│   │   ├── StockTraderRI.Modules.Watch.Tests.csproj.FileListAbsolute.txt
│   │   ├── StockTraderRI.Modules.Watch.Tests.csprojResolveAssemblyReference.cache
│   │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   └── TempPE
│   ├── packages.config
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── Services
│   │   └── WatchListServiceFixture.cs
│   ├── StockTraderRI.Modules.Watch.Tests.csproj
│   └── WatchList
│   └── WatchListViewModelFixture.cs
├── packages
│   ├── CommonServiceLocator.1.2
│   │   ├── CommonServiceLocator.1.2.nupkg
│   │   └── lib
│   │   └── portable-windows8+net40+sl5+windowsphone8
│   │   ├── Microsoft.Practices.ServiceLocation.dll
│   │   ├── Microsoft.Practices.ServiceLocation.pdb
│   │   └── Microsoft.Practices.ServiceLocation.XML
│   ├── EnterpriseLibrary.Common.6.0.1304.0
│   │   ├── EnterpriseLibrary.Common.6.0.1304.0.nupkg
│   │   ├── EnterpriseLibrary.Configuration.xsd
│   │   ├── lib
│   │   │   └── NET45
│   │   │   ├── Microsoft.Practices.EnterpriseLibrary.Common.dll
│   │   │   └── Microsoft.Practices.EnterpriseLibrary.Common.xml
│   │   ├── tools
│   │   │   ├── install.ps1
│   │   │   └── Utils.psm1
│   │   └── Update-EntlibConfiguration.ps1
│   ├── EnterpriseLibrary.ExceptionHandling.6.0.1304.0
│   │   ├── EnterpriseLibrary.ExceptionHandling.6.0.1304.0.nupkg
│   │   ├── lib
│   │   │   └── NET45
│   │   │   ├── Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.dll
│   │   │   └── Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.xml
│   │   ├── Readme.txt
│   │   └── tools
│   │   ├── install.ps1
│   │   └── Utils.psm1
│   ├── EnterpriseLibrary.Logging.6.0.1304.0
│   │   ├── EnterpriseLibrary.Logging.6.0.1304.0.nupkg
│   │   ├── lib
│   │   │   └── NET45
│   │   │   ├── Microsoft.Practices.EnterpriseLibrary.Logging.dll
│   │   │   └── Microsoft.Practices.EnterpriseLibrary.Logging.xml
│   │   ├── Readme.txt
│   │   └── tools
│   │   ├── install.ps1
│   │   └── Utils.psm1
│   ├── Moq.4.2.1312.1622
│   │   ├── lib
│   │   │   ├── net35
│   │   │   │   ├── Moq.dll
│   │   │   │   └── Moq.xml
│   │   │   ├── net40
│   │   │   │   ├── Moq.dll
│   │   │   │   └── Moq.xml
│   │   │   └── sl4
│   │   │   ├── Moq.Silverlight.dll
│   │   │   └── Moq.Silverlight.xml
│   │   └── Moq.4.2.1312.1622.nupkg
│   ├── Prism.Composition.5.0.0
│   │   ├── lib
│   │   │   └── NET45
│   │   │   ├── Microsoft.Practices.Prism.Composition.dll
│   │   │   ├── Microsoft.Practices.Prism.Composition.xml
│   │   │   ├── Microsoft.Practices.Prism.SharedInterfaces.dll
│   │   │   └── Microsoft.Practices.Prism.SharedInterfaces.xml
│   │   └── Prism.Composition.5.0.0.nupkg
│   ├── Prism.Interactivity.5.0.0
│   │   ├── lib
│   │   │   └── NET45
│   │   │   ├── Microsoft.Practices.Prism.Interactivity.dll
│   │   │   └── Microsoft.Practices.Prism.Interactivity.xml
│   │   └── Prism.Interactivity.5.0.0.nupkg
│   ├── Prism.MEFExtensions.5.0.0
│   │   ├── [Content_Types].xml
│   │   ├── lib
│   │   │   └── NET45
│   │   │   ├── Microsoft.Practices.Prism.MefExtensions.dll
│   │   │   └── Microsoft.Practices.Prism.MefExtensions.xml
│   │   └── Prism.MEFExtensions.5.0.0.nupkg
│   ├── Prism.Mvvm.1.0.0
│   │   ├── lib
│   │   │   ├── net45
│   │   │   │   ├── Microsoft.Practices.Prism.Mvvm.Desktop.dll
│   │   │   │   ├── Microsoft.Practices.Prism.Mvvm.dll
│   │   │   │   ├── Microsoft.Practices.Prism.Mvvm.xml
│   │   │   │   ├── Microsoft.Practices.Prism.SharedInterfaces.dll
│   │   │   │   └── Microsoft.Practices.Prism.SharedInterfaces.xml
│   │   │   ├── windows8
│   │   │   │   ├── Microsoft.Practices.Prism.Mvvm.dll
│   │   │   │   ├── Microsoft.Practices.Prism.Mvvm.Store.dll
│   │   │   │   ├── Microsoft.Practices.Prism.Mvvm.xml
│   │   │   │   ├── Microsoft.Practices.Prism.SharedInterfaces.dll
│   │   │   │   └── Microsoft.Practices.Prism.SharedInterfaces.xml
│   │   │   └── windowsphone8
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.dll
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.Phone.dll
│   │   │   ├── Microsoft.Practices.Prism.Mvvm.xml
│   │   │   ├── Microsoft.Practices.Prism.SharedInterfaces.dll
│   │   │   └── Microsoft.Practices.Prism.SharedInterfaces.xml
│   │   └── Prism.Mvvm.1.0.0.nupkg
│   ├── Prism.PubSubEvents.1.0.0
│   │   ├── lib
│   │   │   └── portable-sl4+wp7+windows8+net40
│   │   │   └── Microsoft.Practices.Prism.PubSubEvents.dll
│   │   └── Prism.PubSubEvents.1.0.0.nupkg
│   └── repositories.config
├── StockTraderRI_Desktop.sln
├── StockTraderRI_Desktop.suo
├── StockTraderRI_Desktop.v12.suo
└── StockTraderRI.Tests.AcceptanceTest
├── StockTraderRI.Tests.AcceptanceTest
│   ├── App.config
│   ├── Desktop
│   │   └── StockTraderRIDesktopFixture.cs
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── StockTraderRI.Tests.AcceptanceTest.csproj
│   ├── TestData
│   │   ├── ControlIdentifiers.Designer.cs
│   │   ├── ControlIdentifiers.resx
│   │   ├── TestDataInput.Designer.cs
│   │   └── TestDataInput.resx
│   ├── TestEntities
│   │   ├── Action
│   │   │   └── StockTraderRIAction.cs
│   │   ├── Assertion
│   │   │   └── StockTraderRIAssertion.cs
│   │   └── Page
│   │   └── StockTraderRIPage.cs
│   └── TestInfrastructure
│   ├── DataProvider
│   │   ├── DataProviderBase.cs
│   │   ├── IDataProvider.cs
│   │   ├── MockModels
│   │   │   ├── AccountPosition.cs
│   │   │   ├── Market.cs
│   │   │   ├── MarketHistory.cs
│   │   │   ├── News.cs
│   │   │   └── Order.cs
│   │   └── ModuleDataProviders
│   │   ├── AccountPositionDataProvider.cs
│   │   ├── MarketDataProvider.cs
│   │   ├── MarketHistoryDataProvider.cs
│   │   ├── NewsDataProvider.cs
│   │   └── OrderDataProvider.cs
│   └── TestDataInfrastructure.cs
└── StockTraderRI.Tests.AcceptanceTest.sln

737 directories, 2433 files

标签:

实例下载地址

WPF Prism框架.rar

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警