PopSettingParam.cs 699 B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Collections.ObjectModel;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using System.Windows;
  8. using Caliburn.Micro;
  9. using Caliburn.Micro.Core;
  10. namespace RecipeEditorLib.RecipeModel.Params
  11. {
  12. public class PopSettingParam : Param
  13. {
  14. private string _value;
  15. public string Value
  16. {
  17. get { return this._value; }
  18. set
  19. {
  20. this._value = value;
  21. if (this.Feedback != null)
  22. this.Feedback(this);
  23. this.NotifyOfPropertyChange("Value");
  24. }
  25. }
  26. }
  27. }