Guest User

Untitled

a guest
Aug 10th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. // ViewModel
  2. public double ProgressBarValue
  3. {
  4. get
  5. {
  6. if (Automation != null)
  7. return Automation.ProgressBarValue;
  8. else
  9. return double.NaN;
  10. }
  11. set { }
  12. }
  13.  
  14. // Model
  15. private string _output;
  16. public string Output
  17. {
  18. get { return _output; }
  19. set
  20. {
  21. if (_output == value)
  22. return;
  23. _output = value;
  24. RaisePropertyChanged("Output");
  25. }
  26. }
Add Comment
Please, Sign In to add comment