15 lines
294 B
C#
15 lines
294 B
C#
|
|
namespace ControlGallery.Pages;
|
||
|
|
|
||
|
|
public partial class EntryPage : ContentPage
|
||
|
|
{
|
||
|
|
public EntryPage()
|
||
|
|
{
|
||
|
|
InitializeComponent();
|
||
|
|
}
|
||
|
|
|
||
|
|
private void OnEntryTextChanged(object sender, TextChangedEventArgs e)
|
||
|
|
{
|
||
|
|
BoundLabel.Text = $"You typed: {e.NewTextValue}";
|
||
|
|
}
|
||
|
|
}
|