예제 #1
0
 private void RemovePrenda(ItemPrenda item)
 {
     Prendas.Remove(item);
     if (Prendas.Count() == 0)
     {
         VisibilityStackLayoutAddPrenda(false);
         VisibilityStackLayoutQrPrenda(true);
     }
     RecalculateHeightCollectionViewPrendas();
 }
예제 #2
0
 private void RecalculateHeightCollectionViewPrendas()
 {
     this.cvPrendas.ItemsSource   = Prendas;
     this.cvPrendas.HeightRequest = 250 * Prendas.Count();
 }