Advertisement
Guest User

Untitled

a guest
Aug 21st, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. <StackLayout VerticalOptions="Center">
  2. <StackLayout.BindingContext>
  3. <local:MainViewModel />
  4. </StackLayout.BindingContext>
  5. <Entry AutomationId="FirstNumberEntry" Placeholder="0" Keyboard="Numeric" Text="{Binding FirstNumber}" WidthRequest="100" HorizontalOptions="CenterAndExpand"/> <Label Text="*" HorizontalOptions="Center"/>
  6. <Entry AutomationId="SecondNumberEntry" Placeholder="0" Keyboard="Numeric" Text="{Binding SecondNumber}" WidthRequest="100" HorizontalOptions="CenterAndExpand"/>
  7. <Label Text="Result:" FontSize="Medium" HorizontalOptions="CenterAndExpand"/>
  8. <Label AutomationId="ResultLabel" Text="{Binding Result}" FontSize="Medium" HorizontalOptions="CenterAndExpand"/>
  9. </StackLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement