Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/PrismLibrary/Prism-Samples-Wpf

Samples that demonstrate how to use various Prism features with WPF
https://github.com/PrismLibrary/Prism-Samples-Wpf

prism samples wpf

Last synced: about 2 months ago
JSON representation

Samples that demonstrate how to use various Prism features with WPF

Awesome Lists containing this project

README

        

# Prism Samples WPF
Samples that demonstrate how to use various Prism features with WPF. If you are just getting started with Prism, it is recommended that you start from the first sample, and work your way down the list sequentially (in order). Each sample builds on the previous sample's concept.

Topic | Description
-----------|-------------
[Bootstrapper and the Shell][1] | Create a basic bootstrapper and shell
[Regions][2] | Create a region
[Custom Region Adapter][3] | Create a custom region adapter for the StackPanel
[View Discovery][4] | Automatically inject views with View Discovery
[View Injection][5] | Manually add and remove views using View Injection
[View Activation/Deactivation][6] | Manually activate and deactivate views
[Modules with App.config][7] | Load modules using an App.config file
[Modules with Code][8] | Load modules using code
[Modules with Directory][9] | Load modules from a directory
[Modules loaded manually][10] | Load modules manually using the IModuleManager
[ViewModelLocator][11] | using the ViewModelLocator
[ViewModelLocator - Change Convention][12] | Change the ViewModelLocator naming conventions
[ViewModelLocator - Custom Registrations][13] | Manually register ViewModels for specific views
[DelegateCommand][14] | Use DelegateCommand and `DelegateCommand`
[CompositeCommands][15] | Learn how to use CompositeCommands to invoke multiple commands as a single command
[IActiveAware Commands][16] | Make your commands IActiveAware to invoke only the active command
[Event Aggregator][17] | Using the IEventAggregator
[Event Aggregator - Filter Events][18] | Filtering events when subscribing to events
[RegionContext][19] | Pass data to nested regions using the RegionContext
[Region Navigation][20] | See how to implement basic region navigation
[Navigation Callback][21] | Get notifications when navigation has completed
[Navigation Participation][22] | Learn about View and ViewModel navigation participation with INavigationAware
[Navigate to existing Views][23] | Control view instances during navigation
[Passing Parameters][24] | Pass parameters from View/ViewModel to another View/ViewModel
[Confirm/cancel Navigation][25] | Use the IConfirmNavigationReqest interface to confirm or cancel navigation
[Controlling View lifetime][26] | Automatically remove views from memory with IRegionMemberLifetime
[Navigation Journal][27] | Learn how to use the Navigation Journal
[Dialog Service][29] | Learn how to use the Dialog Service
[Styling Dialog][30] | Learn how to style the dialog
[Using Custom Window][31] | Learn how to use a custom window
[Interactivity - InvokeCommandAction][32] | Invoke commands in response to any event

[1]: 01-BootstrapperShell/
[2]: 02-Regions/
[3]: 03-CustomRegions/
[4]: 04-ViewDiscovery/
[5]: 05-ViewInjection/
[6]: 06-ViewActivationDeactivation/
[7]: 07-Modules-AppConfig/
[8]: 07-Modules-Code/
[9]: 07-Modules-Directory/
[10]: 07-Modules-LoadManual/
[11]: 08-ViewModelLocator/
[12]: 09-ChangeConvention/
[13]: 10-CustomRegistrations/
[14]: 11-UsingDelegateCommands/
[15]: 12-UsingCompositeCommands/
[16]: 13-IActiveAwareCommands/
[17]: 14-UsingEventAggregator/
[18]: 15-FilteringEvents/
[19]: 16-RegionContext/
[20]: 17-BasicRegionNavigation/
[21]: 18-NavigationCallback/
[22]: 19-NavigationParticipation/
[23]: 20-NavigateToExistingViews/
[24]: 21-PassingParameters/
[25]: 22-ConfirmCancelNavigation/
[26]: 23-RegionMemberLifetime/
[27]: 24-NavigationJournal/
[29]: 26-UsingDialogService/
[30]: 27-StylingDialog/
[31]: 28-UsingCustomWindow/
[32]: 29-InvokeCommandAction/