0
<StackLayout>
<Label Text="Digite um Valor:"
Margin="10"
HorizontalOptions="Start"
VerticalOptions="Start"/>
<Entry Keyboard="Numeric"/>
<Button Text="Calcular"
TextColor="White"
FontSize="Medium"
FontAttributes="Bold"
BackgroundColor="Accent"
HorizontalOptions="FillAndExpand"
VerticalOptions="EndAndExpand"
Clicked="Handle_Clicked"/>
</StackLayout>
namespace App4
{
public partial class MainPage : ContentPage
{
public MainPage()
{
InitializeComponent();
}
private async void Handle_Clicked (object sender, System.EventArgs e)
{
await Navigation.PushAsync(new Page1());
}
}
}
You want to access the Entry value in the code, that’s it?
– perozzo