After a few weeks, I almost finished my first WPF project. Now I want to reorganize and make my application as clear / reusable as possible.
Does it take a lot of work (and does this mean that a certain logic will completely change?) To change the entire application to the MVVM template and will this facilitate understanding of the application? Also, are there other things I should learn other than MVVM?
Basically, this application will be used by someone other than me, so my goal is to make this program simpler, since it really got complicated in certain areas.
The general layout of my program consists of:
- 10 classes (1 database class using Singleton)
- 3 HelperClasses
- 3 UserControlPages
- Singleton in about 3 classes
source
share