NotePage.xaml 1.4 KB

12345678910111213141516171819202122232425262728293031
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ContentPage
  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.NotePage"
  8. BackgroundColor="Gray">
  9. <ContentPage.Content>
  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. </ContentPage.Content>
  26. </ContentPage>