| <?xml version="1.0" encoding="UTF-8"?><timesheets:BasePage    xmlns="http://xamarin.com/schemas/2014/forms"    xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"    xmlns:material="clr-namespace:XF.Material.Forms.UI;assembly=XF.Material"    xmlns:timesheets="clr-namespace:comal.timesheets"    material:MaterialNavigationPage.AppBarTitleTextFontSize="16.0"         x:Class="comal.timesheets.NotesPage">    <timesheets:BasePage.PageContent>        <Frame x:Name="notesFrame" CornerRadius="10" BorderColor="Black" Margin="10" Padding="5" BackgroundColor="LightYellow">            <Editor Grid.Row="2" Grid.Column="0" x:Name="Notes" BackgroundColor="Transparent" Keyboard="Default" TextColor="Black"/>           </Frame>    </timesheets:BasePage.PageContent></timesheets:BasePage>
 |