コード例 #1
0
 static void ConfigureCell(ProductCell cell, Product product)
 {
     cell.TitleLabel.Text    = product.Name;
     cell.PriceLabel.Text    = product.Price;
     cell.SubtitleLabel.Text = product.Description;
 }
コード例 #2
0
		static void ConfigureCell (ProductCell cell, Product product)
		{
			cell.TitleLabel.Text = product.Name;
			cell.PriceLabel.Text = product.Price;
			cell.SubtitleLabel.Text = product.Description;
		}