是否可以在 MVC4 应用程序中使用功能区控件?
我正在将 Prism 4 WPF 应用程序重新设计为 MVC 4 Intranet 应用程序。在我的旧应用程序中,我使用功能区控件。是否可以在 MVC 应用程序中使用 Ribbon 控件?您知道一些现有的实现吗?我只使用了基本的功能区功能,例如按钮和按钮。复选框。
I'm redesigning my Prism 4 WPF application into MVC 4 intranet application. In my old application I used Ribbon control. Is it possible to use Ribbon control in MVC application? Do you know about some existing implementations? I used only basic Ribbon features like buttons & check-boxes.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
与 WPF 相反,ASP.NET MVC 不使用控件。它使用模型、控制器和视图。由于视图通常是由浏览器呈现的 HTML,因此您可以使用 javascript 和 CSS 来构建此类按钮。您可以查看 jQuery Ribbon 插件。
Contrary to WPF, ASP.NET MVC doesn't use controls. It uses Models, Controllers and Views. Since the views are often HTML rendered by the browser you could use javascript and CSS to build such buttons. You may checkout the jQuery Ribbon plugin.