|
|
|
@ -6,9 +6,9 @@ namespace MauiSpark.Vues;
|
|
|
|
|
public partial class ReglesVue : ContentView
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Identifie la propriété de dépendance pour le titre des règles.
|
|
|
|
|
/// Identifie la propriété de dépendance pour le Nom des règles.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public static readonly BindableProperty TitreProperty = BindableProperty.Create(nameof(Titre), typeof(string), typeof(ReglesVue), default(string));
|
|
|
|
|
public static readonly BindableProperty NomProperty = BindableProperty.Create(nameof(Nom), typeof(string), typeof(ReglesVue), default(string));
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Identifie la propriété de dépendance pour la description des règles.
|
|
|
|
@ -18,10 +18,10 @@ public partial class ReglesVue : ContentView
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Obtient ou définit le titre des règles.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Titre
|
|
|
|
|
public string Nom
|
|
|
|
|
{
|
|
|
|
|
get => (string)GetValue(TitreProperty);
|
|
|
|
|
set => SetValue(TitreProperty, value);
|
|
|
|
|
get => (string)GetValue(NomProperty);
|
|
|
|
|
set => SetValue(NomProperty, value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|