示例#1
0
 public Cart(int userId)
 {
     InitializeComponent();
     vm = new CartViewModel();
     vm.FetcyByUserAsync(userId);
     _total               = vm.TotalPrice(userId);
     BindingContext       = vm;
     this.totalPrice.Text = "Total price: $ " + _total;
 }