TimeSheetNotePage.xaml 1.5 KB

1234567891011121314151617181920212223242526272829303132
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <timesheets:BasePage xmlns:timesheets="clr-namespace:comal.timesheets"
  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. material:MaterialNavigationPage.AppBarTitleTextFontSize="16.0"
  7. x:Class="comal.timesheets.TimeSheetNotePage"
  8. BackgroundColor="Gray">
  9. <timesheets:BasePage.PageContent>
  10. <Frame x:Name="clockOffFrame" CornerRadius="10" BorderColor="Black" Margin="10,10,10,20" Padding="0">
  11. <Grid>
  12. <Grid.ColumnDefinitions>
  13. <ColumnDefinition Width="*" />
  14. </Grid.ColumnDefinitions>
  15. <Grid.RowDefinitions>
  16. <RowDefinition Height="Auto" />
  17. <RowDefinition Height="1"/>
  18. <RowDefinition Height="*" />
  19. </Grid.RowDefinitions>
  20. <Label x:Name="notesLbl" Grid.Row="0" Grid.Column="0" VerticalTextAlignment="End" HorizontalTextAlignment="Center" FontAttributes="Bold" Margin="0,5,0,5"/>
  21. <BoxView Grid.Row="1" Grid.Column="0" BackgroundColor="Black" Color="Black" />
  22. <Editor Grid.Row="2" Grid.Column="0" x:Name="notesEdt" BackgroundColor="Transparent" Keyboard="Default" TextColor="Black"/>
  23. </Grid>
  24. </Frame>
  25. </timesheets:BasePage.PageContent>
  26. </timesheets:BasePage>