pato
 
Por  Andrew Byrne
 
Figura 1   Un simple ViewModel
http://msdn.microsoft.com/es-es/magazine/jj190802.aspx
 
código:
  1. public class SimpleViewModel : INotifyPropertyChanged
  2. {
  3.   private string _myText = ”Initial Value”;
  4.   public string MyText
  5.   {
  6.     get
  7.     {
  8.       return _myText;
  9.     }
  10. set
  11. {
  12. if (value != _myText)
  13. {
  14. _myText = value;
  15. NotifyPropertyChanged(“MyText”);
  16. }
  17. }
  18. }
  19. public event PropertyChangedEventHandler PropertyChanged;
  20. private void NotifyPropertyChanged(string PropertyName)
  21. {
  22. if (PropertyChanged != null)
  23. {
  24. PropertyChanged(this, 
  25. new PropertyChangedEventArgs(PropertyName));
  26.          }
  27.       }
    28.      }

Deja un comentario