有元数据驱动的 UI 示例代码吗?
我正在设计一个使用元数据驱动 UI 的 .net windows 窗体应用程序。 除了找到 http://msdn.microsoft.com/en-us/library /ms954610.aspx,我没什么好期待的。 这里有人从事元数据驱动的用户界面工作吗? 遵循这种方法的含义是什么,任何指示都会非常有帮助。
I am in the process of designing a .net windows forms application that uses metadata to drive the UI. Apart from finding http://msdn.microsoft.com/en-us/library/ms954610.aspx, I have nothing much to look forward to. Anyone here worked on metadata driven User interfaces? What are the implications of following this methodology and any pointers would be greatly helpful.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以使用 HTA 尝试此操作。 不久前,我使用 HTA 和 XML 创建了一个元数据驱动的应用程序。 我创建了类似 XAML 的结构和 HTA-VBScript 代码来解析该结构并呈现不同类型的 UI 元素以及验证。
You may try this with HTA. Sometime back I created a metadata driven application using HTA and XML. I created XAML like structure and HTA-VBScript code to parse this structure and render diffent types of UI elements along with validations.
查看 Andromeda 项目,该项目的作用非常广泛。 遗憾的是该堆栈对 .NET 不友好(PHP、Postgres、Perl)。
Check the Andromeda project out, which does so extensively. Too bad the stack isn´t .NET friendly (PHP, Postgres, Perl).
您可能想查看 Evolutility CRUD 框架。 它是一个开源元数据驱动框架,用于在运行时生成所有 UI 的 CRUD。
它带有源代码(C# 和 JS)和许多示例。
http://www.evolutility.org
You may want to check out Evolutility CRUD framework. It is an open source metadata driven framework for CRUD generating all UI at run-time.
It comes w/ source code (in C# and JS) and many samples.
http://www.evolutility.org
最明显的答案是 Microsoft 自己通过在 Windows Presentation Foundation(在一定程度上)取代了 WinForms。
如果您想坚持使用 WinForms,您可能需要考虑 MyXaml 这是对 Xaml 的致敬对于 WinForms!
The most obvious answer would be that Microsoft have themselves embraced this concept through their use of Xaml in Windows Presentation Foundation which replaces WinForms (to an extent).
If you want to stick to a WinForms, you may want to consider MyXaml which is kind of a homage to Xaml for WinForms!