Suma 4.0
MainPage.xaml
<!-- User Interface (UI): Suma 4.0 -->
<StackLayout Padding="20">
<!-- Title -->
<Label Text="Suma 4.0" FontSize="Large" />
<!-- A -->
<Label Text="A=" />
<Entry x:Name="boxA" Keyboard="Numeric" />
<!-- B -->
<Label Text="B=" />
<Entry x:Name="boxB" Keyboard="Numeric" />
<!-- A+B -->
<Label Text="A+B=" />
<Entry x:Name="boxAB" Keyboard="Numeric" />
<!-- Button -->
<Button Text="Sum" Clicked="OnButtonClicked" />
</StackLayout>MainPage.xaml.cs
Running the app

Last updated