Guest User

Untitled

a guest
Sep 26th, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.79 KB | None | 0 0
  1. <SwitchCell Text="Save" />
  2.  
  3. <?xml version="1.0" encoding="utf-8" ?>
  4. <ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
  5. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  6. xmlns:local="clr-namespace:Tree"
  7. x:Class="Tree.MainPage"
  8. Title="Geneological Tree">
  9.  
  10. <!--<ContentView Padding="40">
  11. Place new controls here
  12. <Button
  13. x:Name="bSignUp"
  14. Text="SIGN UP"
  15. VerticalOptions="EndAndExpand"
  16. HorizontalOptions="FillAndExpand"
  17. Clicked="OnButtonClicked"
  18. TextColor="White"
  19. FontSize="Medium"
  20. BackgroundColor="LightSeaGreen"/>
  21.  
  22. </ContentView>-->
  23.  
  24. <TableView>
  25. <TableView.Root>
  26. <TableRoot>
  27. <TableSection Title="Personal information">
  28. <EntryCell Label="Name:" Keyboard="Default" Placeholder="enter your name" />
  29. <EntryCell Label="Surname:" Keyboard="Default" Placeholder="enter your surname" />
  30. <EntryCell Label="Sex:" Keyboard="Default" Placeholder="enter your sex" />
  31. <EntryCell Label="Birthday:" Keyboard="Default" Placeholder="enter your birthday" />
  32. <SwitchCell Text="Save" />
  33. </TableSection>
  34. </TableRoot>
  35. </TableView.Root>
  36. </TableView>
  37.  
  38. </ContentPage>
  39.  
  40. <?xml version="1.0" encoding="utf-8" ?>
  41. <ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
  42. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  43. xmlns:local="clr-namespace:Tree"
  44. x:Class="Tree.MainPage"
  45. Title="Geneological Tree">
  46. <Grid>
  47. <Grid.RowDefinitions>
  48. <RowDefinition Height="auto" />
  49. <RowDefinition />
  50. </Grid.RowDefinitions>
  51. <ContentView Padding="40">
  52. <Button
  53. x:Name="bSignUp"
  54. Text="SIGN UP"
  55. VerticalOptions="EndAndExpand"
  56. HorizontalOptions="FillAndExpand"
  57. Clicked="OnButtonClicked"
  58. TextColor="White"
  59. FontSize="Medium"
  60. BackgroundColor="LightSeaGreen"/>
  61.  
  62. </ContentView>
  63.  
  64. <TableView Grid.Row="1">
  65. <TableView.Root>
  66. <TableRoot>
  67. <TableSection Title="Personal information">
  68. <EntryCell Label="Name:" Keyboard="Default" Placeholder="enter your name" />
  69. <EntryCell Label="Surname:" Keyboard="Default" Placeholder="enter your surname" />
  70. <EntryCell Label="Sex:" Keyboard="Default" Placeholder="enter your sex" />
  71. <EntryCell Label="Birthday:" Keyboard="Default" Placeholder="enter your birthday" />
  72. <SwitchCell Text="Save" />
  73. </TableSection>
  74. </TableRoot>
  75. </TableView.Root>
  76. </TableView>
  77. </Grid>
  78. </ContentPage>
Add Comment
Please, Sign In to add comment