Advertisement
Guest User

Untitled

a guest
Nov 29th, 2010
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.28 KB | None | 0 0
  1.     public WorkStatus Status
  2.     {
  3.         get { return _status; }
  4.         set
  5.         {
  6.             if (_status == value) return;
  7.             _status = value;
  8.             RaisePropertyChanged("Status");
  9.             CommandManager.InvalidateRequerySuggested();
  10.         }
  11.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement