如何使用T4生成WPF表单?
我们的产品要求之一是允许生成搜索表单。所以我们需要方便用户根据选择的数据字段生成搜索表单。
现在我们的应用程序位于 WPF 中。谁能指导我如何开始这件事。我被告知要研究 T4,但任何形式的帮助将不胜感激。
One of our product requirement is to allow the generation of Search form. So we need to facilitate the user to generate the search form based on the selected data fields.
Now our application is in WPF. Can anybody guide me how to start this thing. I have been told to research on T4, But any kind of help will be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
实际上T4恐怕对你没有多大帮助; T4 在编译并交付给客户之前在 IDE (Visual Studio) 中生成代码。
您需要考虑动态生成控件,最有可能通过数据绑定和 MVVM,因为它是最干净的。
Actually T4 won't help you much here I'm afraid; T4 generates code in the IDE (Visual Studio), before compiling and shipping to a customer.
You'll need to look into generating the controls dynamically, most likely through data binding and MVVM as it's cleanest.