Advertisement
kukus

@222

Oct 14th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  4. xmlns:d="http://xamarin.com/schemas/2014/forms/design"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. mc:Ignorable="d"
  7. x:Class="App9.MainPage">
  8.  
  9. <StackLayout>
  10. <!-- Place new controls here -->
  11. <Label x:Name="label"
  12. Text="май нью батн"
  13. HorizontalOptions="Center"
  14. VerticalOptions="CenterAndExpand" />
  15. <Button x:Name="btn"
  16. Clicked="Button_Clicked"
  17.  
  18. Text="push it" FontSize="Large"
  19. VerticalOptions="CenterAndExpand"
  20. HorizontalOptions="Center"></Button>
  21. <Button Clicked="btn_Clicked" Text="жмакни"></Button>
  22. <Image Source="unnamed.jpg" />
  23. </StackLayout>
  24.  
  25. </ContentPage>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement