允许用户创建自己的工作流程场景
我有这样的任务:
允许用户创建类似模板表单的内容(通过任何 Web CMS 中的预定义控件)以及在该表单中使用的一些工作流程。例如,用户可以创建生成某些报告的表单,并在提交后 - 必须显示另一个表单,但所有这些都应该动态发生,而无需雇用开发人员来扩展现有代码。是否可以为用户提供一些预定义的场景,并允许他们结合这些场景来选择一些操作?我知道我们可以写这样的东西,但是在实现它时可能会出现很多错误,我希望有一些现成的解决方案..
是否有一种适用于 Winforms/WPF 的 CMS?...您能建议完成此类任务的最佳方法吗?
I have such task:
allow users to create smth like template forms(from predefined controls like in any CMS for web) and some workflows to be used in that forms. For example user can create form of generating some report, and after submitting it-another form must be shown, but all that should happen dynamically without hiring developer to extend the existing code. Is it possible to give some predefined scenarios to the users and allow them to choose some actions, combining that scenarios? I know that we can write such thing, but there may be many errors while implementing that and i hope there is some ready solution..
Is there a sort of CMS for Winforms/WPF?..Can you suggest the best way to finish such task?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 WPF。您可以让他们以文本文件或文本框的形式输入 XAML,然后使用 XamlReader。
Use WPF. You could let them enter the XAML in form of a text file or a text box and then execute it on runtime using XamlReader.