You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.4 KiB
47 lines
1.4 KiB
using Models;
|
|
|
|
namespace ShoopNCook.Views;
|
|
|
|
// Classe représentant une vue d'ingrédient
|
|
public partial class IngredientView : ContentView
|
|
{
|
|
// Propriétés liées pour le nom, la quantité et l'unité de l'ingrédient
|
|
private readonly BindableProperty NameProperty =
|
|
BindableProperty.Create(nameof(Name), typeof(string), typeof(IngredientView), default(string));
|
|
|
|
public static readonly BindableProperty QuantityProperty =
|
|
BindableProperty.Create(nameof(Quantity), typeof(float), typeof(IngredientView), default(float));
|
|
|
|
public static readonly BindableProperty UnitProperty =
|
|
BindableProperty.Create(nameof(Unit), typeof(string), typeof(IngredientView), default(string));
|
|
|
|
public string Name
|
|
{
|
|
get => (string)GetValue(NameProperty);
|
|
set => SetValue(NameProperty, value);
|
|
}
|
|
|
|
public float Quantity
|
|
{
|
|
get => (float)GetValue(QuantityProperty);
|
|
set => SetValue(QuantityProperty, value);
|
|
}
|
|
|
|
public string Unit
|
|
{
|
|
get => (string)GetValue(UnitProperty);
|
|
set => SetValue(UnitProperty, value);
|
|
}
|
|
|
|
public IngredientView(Ingredient ingredient)
|
|
{
|
|
InitializeComponent();
|
|
|
|
// Initialisation des valeurs de l'ingrédient
|
|
Name = ingredient.Name;
|
|
Quantity = ingredient.Amount;
|
|
//TODO Unit implementation in IngredientView.xaml.cs
|
|
Unit = ingredient.Unit;
|
|
}
|
|
}
|