如何为 ViewModel 和 View 创建模板?
我想知道是否可以为视图模型和视图创建模板。
我想为两者添加一个公共结构,因此当我添加新的 ViewModel
或 View
时,它将准备好所有公共区域、字段、构造函数、属性和方法。
因此,当我添加新的 ViewModel
或 View
时,它将准备好创建它所需的所有代码。
注意:我不是在谈论 ViewModelBase
或 ViewBase
。我已经做好了。
I was wondering if it is possible to create a template for a view model and view.
I would like to add a common structure to both, so when i add the new ViewModel
or View
it will all ready have all my common regions, fields, constructors, properties and methods.
So when i add the new ViewModel
or View
it will all ready have all the code i need to create it.
Note: I am not talking about ViewModelBase
or ViewBase
. I have that in place.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我之前使用过 codeplex 工具包,我发现非常有用:
I've used the codeplex toolkit before, which I found pretty useful:
我不确定我的理解是否正确,但请查看 Visual Studio 模板。
如果您需要模板示例,请查看MVVMLight,它包含多个用于自定义类和视图的模板。
模板的另一种可能性(或者更确切地说是穷人的版本)是代码片段。
I'm not sure if I get you correctly, but have a look at Visual Studio Templates.
If you need examples for templates have a look at MVVMLight it contains several templates for custom classes and views.
Another possibility (or rather a poor mans version) for a template would be a codesnippet.