Hi folks.
I'm currently setting up a MVVM system by myself, but I'm rather unsure if I'm on the right track, so I post here some code just to hear if you guys could tell me if it's the right direction or what I can do better.
Mostly the DataBinding part is something I think I haven't got into yet so here's what I have till now:
ViewModel class
MVVM and DataBinding in Unity
I'm currently setting up a MVVM system by myself, but I'm rather unsure if I'm on the right track, so I post here some code just to hear if you guys could tell me if it's the right direction or what I can do better.
Mostly the DataBinding part is something I think I haven't got into yet so here's what I have till now:
ViewModel class
Code (csharp):
- {
- #region Data
- private DataObj _data;
- internal DataObj Data
- {
- get { return...