map improvement

user picture
image crop
This commit is contained in:
2011-03-31 06:24:59 +03:00
parent 833083ca0e
commit c0d31a8652
65 changed files with 3128 additions and 41 deletions
@@ -40,6 +40,39 @@ namespace MyFriendsAround.WP7.ViewModel
}
}
private string _pinUserName;
public string PinUserName
{
get { return _pinUserName; }
set
{
if (_pinUserName != value)
{
_pinUserName = value;
OnPropertyChanged("PinUserName");
}
}
}
private string _pinImageUrl;
public string PinImageUrl
{
get { return _pinImageUrl; }
set
{
if (_pinImageUrl != value)
{
_pinImageUrl = value;
OnPropertyChanged("PinImageUrl");
}
}
}
public event PropertyChangedEventHandler PropertyChanged;
public void OnPropertyChanged(string propertyName)