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.
mastermind/Sources/MauiSpark/Vues/TitreVue.xaml.cs

18 lines
454 B

namespace MauiSpark.Vues;
public partial class TitreVue : ContentView
{
public static readonly BindableProperty TexteProperty = BindableProperty.Create(nameof(Texte), typeof(string), typeof(TitreVue), default(string));
public string Texte
{
get => (string)GetValue(TexteProperty);
set => SetValue(TexteProperty, value);
}
public TitreVue()
{
InitializeComponent();
BindingContext = this;
}
}