| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <?xml version="1.0" encoding="utf-8"?>
- <ContentView xmlns="http://xamarin.com/schemas/2014/forms"
- xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
- xmlns:local="clr-namespace:PRS.Mobile;assembly=PRS.Mobile"
- xmlns:mobile="clr-namespace:InABox.Mobile;assembly=InABox.Mobile.Shared"
- x:Class="PRS.Mobile.SiteManufacturingSetouts">
-
- <ContentView.Resources>
-
- <DataTemplate x:Key="SetoutTemplate" x:DataType="local:SetoutShell">
- <mobile:MobileCard
- Padding="2"
- HeightRequest="40"
- IsClickable="True"
- Clicked="ListView_Tapped">
-
- <Grid RowSpacing="0" ColumnSpacing="0">
-
- <Grid.RowDefinitions>
- <RowDefinition Height="Auto"/>
- <RowDefinition Height="*"/>
- </Grid.RowDefinitions>
-
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="*"/>
- </Grid.ColumnDefinitions>
-
- <Label
- Grid.Row="0"
- Grid.Column="0"
- Text="{Binding Number}"
- FontAttributes="Bold"
- FontSize="Small"
- VerticalTextAlignment="Center"
- LineBreakMode="TailTruncation"
- TextColor="Black"/>
-
- <Label
- Grid.Row="1"
- Grid.Column="0"
- FontSize="Small"
- VerticalTextAlignment="Start"
- Text="{Binding Description}"
- LineBreakMode="WordWrap"
- TextColor="Black"/>
-
- </Grid>
-
- </mobile:MobileCard>
- </DataTemplate>
-
- </ContentView.Resources>
-
- <ContentView.Content>
- <Grid>
-
- <Grid.RowDefinitions>
- <RowDefinition Height="Auto"/>
- <RowDefinition Height="Auto"/>
- <RowDefinition Height="*"/>
- </Grid.RowDefinitions>
-
- <mobile:MobileSearchBar
- x:Name="_search"
- Grid.Row="1"
- TextChanged="_search_OnTextChanged" />
-
- <mobile:MobileCollectionView
- x:Name="_items"
- Grid.Row="2"
- PullToRefresh="True"
- RefreshRequested="_items_OnRefreshRequested"
- ShowRecordCount="True"
- ItemTemplate="{StaticResource SetoutTemplate}">
- </mobile:MobileCollectionView>
-
- </Grid>
-
- </ContentView.Content>
-
- </ContentView>
|