Skip to content

Instantly share code, notes, and snippets.

@deapsquatter
Last active December 12, 2015 02:48
Show Gist options
  • Save deapsquatter/4701323 to your computer and use it in GitHub Desktop.
Save deapsquatter/4701323 to your computer and use it in GitHub Desktop.
public MvxRelayCommand<Device> DeviceSelected {
get {
return new MvxRelayCommand<Device> ((device) =>
{
DataStore.AddToRecentlyUsed(device);
this.RequestNavigate<DeviceVM>(new { deviceUid = device.Id.ToString() }, true, new MvxRequestedBy());
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment