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.
34 lines
958 B
34 lines
958 B
namespace PocketBook;
|
|
|
|
public partial class Filtrage : ContentView
|
|
{
|
|
|
|
public static readonly BindableProperty DatanameProperty =
|
|
BindableProperty.Create(nameof(Dataname), typeof(string), typeof(Filtrage), string.Empty);
|
|
|
|
public static readonly BindableProperty NumberDataProperty =
|
|
BindableProperty.Create(nameof(NumberData), typeof(string), typeof(Filtrage), string.Empty);
|
|
|
|
|
|
public string Dataname
|
|
{
|
|
get { return (string)GetValue(DatanameProperty); }
|
|
set { SetValue(DatanameProperty, value); }
|
|
}
|
|
public string NumberData
|
|
{
|
|
get { return (string)GetValue(NumberDataProperty); }
|
|
set { SetValue(NumberDataProperty, value); }
|
|
}
|
|
|
|
|
|
|
|
public Filtrage()
|
|
{
|
|
InitializeComponent();
|
|
|
|
dataname.SetBinding(Label.TextProperty, new Binding(nameof(Dataname), source: this));
|
|
numberData.SetBinding(Label.TextProperty, new Binding(nameof(NumberData), source: this));
|
|
}
|
|
}
|