private string _hello;
public string Hello
{
get { return _hello; }
set
{
_hello = value;
RaisePropertyChanged(()=>Hello);
}
[NotifyPropertyChanged]
public class LoginViewModel
: MvxViewModel
{
#region DataFields
public string UserName { get; set; }
public string Password { get; set; }
public bool RememberMe { get; set; }
#endregion
}
Find More At
http://blog.thefo2sh.com/mvxnotifyproperty-aspect-using-postsharp/