TimeSheetNotePage.xaml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435
  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. BackgroundColor="Gray">
  11. <mobile:MobilePage.PrimaryMenu>
  12. <mobile:MobileMenuButton Image="save" Clicked="Save_Clicked" />
  13. </mobile:MobilePage.PrimaryMenu>
  14. <mobile:MobilePage.PageContent>
  15. <Frame x:Name="clockOffFrame" CornerRadius="10" BorderColor="Black" Margin="10,10,10,20" Padding="0">
  16. <Grid>
  17. <Grid.ColumnDefinitions>
  18. <ColumnDefinition Width="*" />
  19. </Grid.ColumnDefinitions>
  20. <Grid.RowDefinitions>
  21. <RowDefinition Height="Auto" />
  22. <RowDefinition Height="1"/>
  23. <RowDefinition Height="*" />
  24. </Grid.RowDefinitions>
  25. <Label x:Name="notesLbl" Grid.Row="0" Grid.Column="0" VerticalTextAlignment="End" HorizontalTextAlignment="Center" FontAttributes="Bold" Margin="0,5,0,5"/>
  26. <BoxView Grid.Row="1" Grid.Column="0" BackgroundColor="Black" Color="Black" />
  27. <Editor Grid.Row="2" Grid.Column="0" x:Name="notesEdt" BackgroundColor="Transparent" Keyboard="Default" TextColor="Black"/>
  28. </Grid>
  29. </Frame>
  30. </mobile:MobilePage.PageContent>
  31. </mobile:MobilePage>