NotesPage.xaml 800 B

12345678910111213141516
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <timesheets:BasePage
  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:timesheets="clr-namespace:comal.timesheets"
  7. material:MaterialNavigationPage.AppBarTitleTextFontSize="16.0"
  8. x:Class="comal.timesheets.NotesPage"
  9. >
  10. <timesheets:BasePage.PageContent>
  11. <Frame x:Name="notesFrame" CornerRadius="10" BorderColor="Black" Margin="10" Padding="5" BackgroundColor="LightYellow">
  12. <Editor Grid.Row="2" Grid.Column="0" x:Name="Notes" BackgroundColor="Transparent" Keyboard="Default" TextColor="Black"/>
  13. </Frame>
  14. </timesheets:BasePage.PageContent>
  15. </timesheets:BasePage>