Last active
January 8, 2017 07:42
-
-
Save gurvinderbini/762b78e8be6213f519662379f4553515 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public ObservableCollection<Person> _name; | |
public ObservableCollection<Person> Name | |
{ | |
get { return _name; } | |
set | |
{ | |
SetProperty(ref _name, value); | |
OnPropertyChanged(); | |
} | |
} | |
Public Command ClickCommand | |
{ | |
get { return new Command(() => Login_OnClick()); } | |
} | |
private void Login_OnClick(){ | |
//...... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment