1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace RecipeEditorLib.RecipeModel.Params
- {
- public class BoolParam : Param
- {
- private bool _value;
- public bool Value
- {
- get { return this._value; }
- set
- {
- this._value = value;
- if (this.Feedback != null)
- this.Feedback(this);
- this.NotifyOfPropertyChange("Value");
- }
- }
-
- }
- }
|