NotesPage.xaml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <mobile:MobilePage
  3. xmlns="http://xamarin.com/schemas/2014/forms"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  5. xmlns:material="clr-namespace:XF.Material.Forms.UI;assembly=XF.Material"
  6. xmlns:local="clr-namespace:PRS.Mobile"
  7. xmlns:mobile="clr-namespace:InABox.Mobile;assembly=InABox.Mobile.Shared"
  8. material:MaterialNavigationPage.AppBarTitleTextFontSize="16.0"
  9. x:Class="PRS.Mobile.NotesPage"
  10. >
  11. <mobile:MobilePage.PrimaryMenu>
  12. <mobile:MobileMenuButton
  13. Image="tick"
  14. Clicked="MobileMenuButton_OnClicked" />
  15. </mobile:MobilePage.PrimaryMenu>
  16. <mobile:MobilePage.PageContent>
  17. <Frame
  18. x:Name="notesFrame"
  19. CornerRadius="5"
  20. BorderColor="Gray"
  21. Margin="5"
  22. Padding="5"
  23. BackgroundColor="LightYellow"
  24. HasShadow="False">
  25. <mobile:MobileEditor
  26. x:Name="Notes"
  27. BackgroundColor="
  28. Transparent"
  29. Keyboard="Default"
  30. TextColor="Black"/>
  31. </Frame>
  32. </mobile:MobilePage.PageContent>
  33. </mobile:MobilePage>