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

19 lines
465 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.ToUpper());
}
public TitreVue()
{
InitializeComponent();
BindingContext = this;
}
}