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.
20 lines
538 B
20 lines
538 B
namespace PocketBook;
|
|
|
|
public partial class TitledAuthor : ContentView
|
|
{
|
|
|
|
public static readonly BindableProperty NameTextProperty =
|
|
BindableProperty.Create(nameof(NameText), typeof(string), typeof(Filtrage), string.Empty);
|
|
|
|
public string NameText
|
|
{
|
|
get { return (string)GetValue(NameTextProperty); }
|
|
set { SetValue(NameTextProperty, value); }
|
|
}
|
|
|
|
public TitledAuthor()
|
|
{
|
|
InitializeComponent();
|
|
nameText.SetBinding(Label.TextProperty, new Binding(nameof(NameText), source: this));
|
|
}
|
|
} |