Caliburn Micro Guard Methods not evaluating on property change

这一生的挚爱 提交于 2021-02-18 09:04:44

问题


I've been playing with the Caliburn Micro MVVM framework and am having some problems with guard methods.

I have a view model:

public class MyViewModel : PropertyChangedBase, IMyViewModel

A property:

public DateTime? Date
{
   get{return this.date; }
   set
   {
      this.date = value;
      this.NotifyOfPropertyChange(() => Date);
   }
}

Also, i have a method in my view model with a guard method

public void Calculate()
{
    // ..some code..
}

public bool CanCalculate()
{
    return this.Date.HasValue;
}

And a button in my view:

The problem I am having is that the CanCalculate method executes when loading but when I enter values into the text fields, it doesn't reevaluate the CanCalculate method. I am firing the property changed event on setting the databound view model properties so what could be the problem?


回答1:


Ok I figured it out. I didn't realise that you have to fire the guard method notification, thought the framework did that, but it makes sense.

So I change my property setter to:

public DateTime? Date
{
   get
   {
      return this.date; 
   }
   set
   {
      this.date = value;
      this.NotifyOfPropertyChange(() => Date);
      this.NotifyOfPropertyChange(() => CanCalculate);
   }
}

and changed my CanCalculate method to a property:

public bool CanCalculate
{
    get
    {
        return this.Date.HasValue;
    }
}

And all works fine now :)




回答2:


If you dont need CanExecute to be method, because you wont use parameters. Then you can rewrite it as property with standard notification and only getter. And call its PropertyChanged when you asume result of the getter changed.




回答3:


I am assuming these are called via a Command (some code around what is call those methods would help).

If the case you are having is that you want the commands to revevaluate based on some input you need to invoke CommandManager.InvalidateRequerySuggested() so the commands CanExecutes will get called. Since the command is bound to the button and not the textbox it will not update. In your property setter (the one bound to the textbox) you have to tell the framework to requery the commands. This in turn will call your CanCalculate method.

If the Calculate and CanCalculate methods are not associated with a command then the above will not help.



来源:https://stackoverflow.com/questions/5546568/caliburn-micro-guard-methods-not-evaluating-on-property-change

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!