如何在MVP中设置控件状态

时间:2016-02-18 09:42:45

标签: c# winforms design-patterns mvp

我想在用户无法举起活动时禁用按钮(或其他控件)。做这个的最好方式是什么?查看句柄或者演示者应该在视图中按属性传递值,然后视图将更新控件的状态。

例如,如果先前的查询未完成,则用户不应该开始新的。

选项1:

interface IView
{
    event EventHandler Event;
}

class View : IView
{
    private readonly Button _button;

    public event EventHandler Event;

    public void button_Click(object sender, EventArgs e)
    {
        _button.Enabled = false;

        if(Event != null)
        {
            Event(this, EventArgs.Empty);
        }

        _button.Enabled = true;
    }

}

class Presenter
{
    public void View_Event(object sender, EventArgs e)
    {
        // code...
    }
}

选项2:

interface IView
{
    event EventHandler Event;

    bool CanRaiseEvent { set; }
}

class View : IView
{
    private readonly Button _button;

    public event EventHandler Event;

    public bool CanRaiseEvent
    {
        set
        {
            _button.Enabled = value;
        }
    }

    public void button_Click(object sender, EventArgs e)
    {
        if (Event != null)
        {
            Event(this, EventArgs.Empty);
        }
    }
}

class Presenter
{
    private readonly IView _view;
    public void View_Event(object sender, EventArgs e)
    {
        _view.CanRaiseEvent = false;

        // code...

        _view.CanRaiseEvent = true;
    }
}

我知道我应该在执行下一个查询之前检查presenter查询的状态,但我想通知视图用户甚至不应该尝试。

1 个答案:

答案 0 :(得分:1)

两个石蕊'我用于MVP设计的测试是:1)逻辑是否可测试? 2)我可以替换具体的视图,应用程序仍然可以工作吗?

从这个角度来看,选项2看起来更具吸引力。