MyTimesheets.xaml 645 B

1234567891011121314151617
  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. x:Class="comal.timesheets.MyTimesheets"
  8. Title="Current TimeSheets"
  9. >
  10. <timesheets:BasePage.PageContent>
  11. <timesheets:MobileGrid
  12. x:Name="TimeSheets"
  13. PullToRefresh="True"
  14. RefreshRequested="TimeSheets_OnRefreshRequested"
  15. />
  16. </timesheets:BasePage.PageContent>
  17. </timesheets:BasePage>