winform 上的 puremvc 吗?

发布于 2024-09-19 06:15:59 字数 1132 浏览 10 评论 0 原文

除了 puremvc 之外,我找不到任何可以同时覆盖 Web 和桌面、移动(包括 iphone)的 mvc 框架。这对于 Winform 来说似乎很棒

http:// www.pathf.com/blogs/2009/07/winforms-development-made-simple-with-puremvc/

但是除了 silverlight 的示例之外,我找不到 Winform 的真实示例(只有 10 行代码片段)。

我无法在他们的论坛上询问,似乎目前无法注册。

有人可以提供一个包含所有部分的示例,该示例比仅在 main 中启动更复杂一些:

http://forums.puremvc.org/index.php?topic=129.0;prev_next=next

/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main(string[] args)
{
    try
    {
        Application.SetCompatibleTextRenderingDefault(false);
        MainForm mf = new MainForm(args);
        ApplicationFacade facade = (ApplicationFacade) ApplicationFacade.Instance;
        facade.Startup(mf);
        Application.Run(mf);
    }
    catch (Exception ex)
    {
        // Log some errors, show message box, etc.
    }
}

I cannot find any mvc framework that can cover both the web and the desktop, mobile (including iphone) except puremvc. It seems great for Winform

http://www.pathf.com/blogs/2009/07/winforms-development-made-simple-with-puremvc/

But apart from samples for silverlight, I cannot find a real example for Winform just a 10 line snippet.

I cannot ask on their forum it seems one cannot register at the moment.

Could someone could give a sample with all parts that is a bit more elaborate than just startup in main:

http://forums.puremvc.org/index.php?topic=129.0;prev_next=next

/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main(string[] args)
{
    try
    {
        Application.SetCompatibleTextRenderingDefault(false);
        MainForm mf = new MainForm(args);
        ApplicationFacade facade = (ApplicationFacade) ApplicationFacade.Instance;
        facade.Startup(mf);
        Application.Run(mf);
    }
    catch (Exception ex)
    {
        // Log some errors, show message box, etc.
    }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文