Hi there I have read many articles on MVVM from MSDN.
I have understood it at least technically but I dont know whether to say I understood it or not as a design pattern.
Since while imagining MVVM in my scenario, my thinking gets stuck somewhere. So please help to decide whether to MVVM or not and if Yes how to.
I have a layout containing some shapes and button. I am allowing user to customize them (atleast color and font). I am thinking to store the customizable property values as XML and one-way bind them to XmlDataSource. Each time user launches the app the color/font will be retrieved from Xml file.
When user clicks one of the component of the layout say button, a UI to customize button will be populated (say color picker and font chooser). Now user may select change the color/font. So here, I think I should generate customization UI, bind it (dynamically through the code?) to the ViewModel and ViewModel will contain methods to manipulate Xml (which will be Model XmlDataProvider).
However all articles I read online talks about object ViewModel (and connecting it to the UI through many interfaces), but doesnt talk about how that ViewModel binds to the underlying data source be it XML or SQL.
So from layout to Xml file - there will be one way binding and from Customization UI to Xml file, there will be ViewModel in between.
Will any changes made from Customization UI will be reflected on layout immediately? Is this binding architecture right? Is this what followed in such scenarios? Am I messing with the MVVM design concept. Should this be different way? or Should I not go to MVVM? Please help.
I put hard efforts in learning all big-big articles, I understood them quite well, but :(. Thank you.