Autogenerating WPF/Silverlight Views (scaffolding)
Are there any tools out there to autogenerate the different components used to make up a WPF application? Model, View, View Model, 开发者_JAVA百科XAML form?
The closest to this I've seen to this is the MVVM Light Toolkit.
The closest thing I have found is this:
http://sculpture.codeplex.com/
I am sure that I could knock something up with T4 templates.
I suggest you DevExpress
, you can generate your view models and views, for views, you can also use user control for sharing needs.
https://community.devexpress.com/blogs/theonewith/archive/2013/06/14/new-wpf-mvvm-scaffolding-wizard-released-in-v2013-1.aspx
I'm using T4 templates for View, ViewModel generation in silverlight. I'm using reflection over the Model and generating whole MVVM that way.
精彩评论