| 1234567891011121314151617181920212223 |
- <?xml version="1.0" encoding="UTF-8"?>
- <mobile:MobilePage
- 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:sfPopup="clr-namespace:Syncfusion.XForms.PopupLayout;assembly=Syncfusion.SfPopupLayout.XForms"
- xmlns:local="clr-namespace:PRS.Mobile"
- xmlns:mobile="clr-namespace:InABox.Mobile;assembly=InABox.Mobile.Shared"
- x:Class="PRS.Mobile.StaffStatusPage"
- Title="In/Out Board">
- <mobile:MobilePage.PageContent>
- <mobile:MobileGrid
- x:Name="_staff"
- Margin="5"
- PullToRefresh="True"
- RefreshRequested="_staff_OnRefreshRequested"
- SelectionMode="None"
- CanSearch="True"
- ShowRecordCount="True"/>
- </mobile:MobilePage.PageContent>
- </mobile:MobilePage>
|