Skip to content

Instantly share code, notes, and snippets.

@gurvinderbini
Last active January 8, 2017 07:42
Show Gist options
  • Save gurvinderbini/762b78e8be6213f519662379f4553515 to your computer and use it in GitHub Desktop.
Save gurvinderbini/762b78e8be6213f519662379f4553515 to your computer and use it in GitHub Desktop.
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