TimeSheetNotePage.xaml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <mobile:MobilePage
  3. xmlns:local="clr-namespace:PRS.Mobile"
  4. xmlns="http://xamarin.com/schemas/2014/forms"
  5. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  6. xmlns:material="clr-namespace:XF.Material.Forms.UI;assembly=XF.Material"
  7. xmlns:mobile="clr-namespace:InABox.Mobile;assembly=InABox.Mobile.Shared"
  8. material:MaterialNavigationPage.AppBarTitleTextFontSize="16.0"
  9. x:Class="PRS.Mobile.TimeSheetNotePage">
  10. <mobile:MobilePage.PrimaryMenu>
  11. <mobile:MobileMenuButton Image="save" Clicked="Save_Clicked" />
  12. </mobile:MobilePage.PrimaryMenu>
  13. <mobile:MobilePage.PageContent>
  14. <mobile:MobileCard
  15. Margin="5"
  16. Padding="0">
  17. <Grid RowSpacing="0">
  18. <Grid.ColumnDefinitions>
  19. <ColumnDefinition Width="*" />
  20. </Grid.ColumnDefinitions>
  21. <Grid.RowDefinitions>
  22. <RowDefinition Height="Auto" />
  23. <RowDefinition Height="1"/>
  24. <RowDefinition Height="*" />
  25. </Grid.RowDefinitions>
  26. <Label
  27. x:Name="notesLbl"
  28. Grid.Row="0"
  29. Grid.Column="0"
  30. HorizontalTextAlignment="Start"
  31. FontAttributes="Italic"
  32. Padding="5"
  33. BackgroundColor="WhiteSmoke"
  34. TextColor="Gray"
  35. FontSize="Small"/>
  36. <BoxView
  37. x:Name="notesSeparator"
  38. Grid.Row="1"
  39. Grid.Column="0"
  40. BackgroundColor="Gray"
  41. Color="Gray"
  42. Margin="0" />
  43. <Editor
  44. Grid.Row="2"
  45. Grid.Column="0"
  46. x:Name="notesEdt"
  47. BackgroundColor="LightYellow"
  48. Keyboard="Default"
  49. TextColor="Black"
  50. FontSize="Small"/>
  51. </Grid>
  52. </mobile:MobileCard>
  53. </mobile:MobilePage.PageContent>
  54. </mobile:MobilePage>