Guest User

Untitled

a guest
Sep 21st, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 0 0
  1. <ContentPage.Content>
  2. <Grid>
  3. <Grid.RowDefinitions>
  4. <RowDefinition Height="*" />
  5. <RowDefinition Height="Auto" />
  6. </Grid.RowDefinitions>
  7. <Grid.ColumnDefinitions>
  8. <ColumnDefinition Width="*" />
  9. <ColumnDefinition Width="*" />
  10. </Grid.ColumnDefinitions>
  11.  
  12. <TableView Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="2"
  13. Intent="Form" HasUnevenRows="true">
  14. <TableSection Title="General">
  15. <EntryCell x:Name="recipeNameCell" Label="Name" />
  16. </TableSection>
  17.  
  18. <TableSection Title="Ingredients">
  19. <ViewCell>
  20. <StackLayout Padding="15">
  21. <Editor x:Name="ingredientsCell" />
  22. </StackLayout>
  23. </ViewCell>
  24. </TableSection>
  25.  
  26. <TableSection Title="Directions">
  27. <ViewCell>
  28. <StackLayout Padding="15">
  29. <Editor x:Name="directionsCell" />
  30. </StackLayout>
  31. </ViewCell>
  32. </TableSection>
  33. </TableView>
  34.  
  35. <Button Text="Save" Grid.Row="1" Grid.Column="0" BackgroundColor="#EE3F60" TextColor="White" x:Name="saveButton" />
  36. <Button Text="Cancel" Grid.Row="1" Grid.Column="1" BackgroundColor="#4CC7F2" TextColor="White" x:Name="cancelButton" />
  37. </Grid>
  38. </ContentPage.Content>
Add Comment
Please, Sign In to add comment