コード例 #1
0
 /// <summary>
 /// The route that was selected.
 /// </summary>
 public LocationSelectedEventArgs(Location _location)
 {
     this.Location = _location;
 }
コード例 #2
0
 /// <summary>
 /// The location to base the view model on.
 /// </summary>
 public SearchLocationResultViewModel(Location location)
 {
     this.Location = location;
     this.SelectedCommand = new ObservableCommand();
     this.SelectedCommand.Executed += OnSelectedCommandExecuted;
 }