Evon Code Snippets
A Visual Studio extension which adds code snippets to improve productivity.
Snippets
All available Snippets are documented here.
ViewModelBase
propobs
: Inserts a property with a backing field where the setter uses the ViewModelBaseCore.SetProperty(...)
method, so changes to the Property can be observed. The class must be derived from ViewModelBaseCore
or its descendants.
propval
: Inserts a property with a backing field where the setter uses the ViewModelBase.SetAndValidateProperty(...)
method, so changes to the Property can be observed and validated. The class must be derived from ViewModelBase
or its descendants.
Code Conventions
#regionsc
: Inserts correctly ordered regions of a class.
#regionsvm
: Inserts correctly ordered regions of a UserControl class.
#regionsctrl
: Inserts correctly ordered regions of a view model class.