StaffStatusPage.xaml 900 B

1234567891011121314151617181920212223
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <mobile:MobilePage
  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:sfPopup="clr-namespace:Syncfusion.XForms.PopupLayout;assembly=Syncfusion.SfPopupLayout.XForms"
  7. xmlns:local="clr-namespace:PRS.Mobile"
  8. xmlns:mobile="clr-namespace:InABox.Mobile;assembly=InABox.Mobile.Shared"
  9. x:Class="PRS.Mobile.StaffStatusPage"
  10. Title="In/Out Board">
  11. <mobile:MobilePage.PageContent>
  12. <mobile:MobileGrid
  13. x:Name="_staff"
  14. Margin="5"
  15. PullToRefresh="True"
  16. RefreshRequested="_staff_OnRefreshRequested"
  17. SelectionMode="None"
  18. CanSearch="True"
  19. ShowRecordCount="True"/>
  20. </mobile:MobilePage.PageContent>
  21. </mobile:MobilePage>