|
<syncfusion:SfListView x:Name="listView"
SelectionMode="Multiple"
ItemSize="320"
SelectedItems="{Binding SelectedItems}"
ItemSpacing="3"> |
|
<syncfusion:SfListView x:Name="listView"
SelectionMode="Multiple"
AutoFitMode="DynamicHeight"
SelectedItems="{Binding SelectedItems}"
ItemSpacing="3"> |
|
<syncfusion:SfListView x:Name="listView"
SelectionMode="Multiple"
AutoFitMode="DynamicHeight"
SelectedItems="{Binding SelectedItems}"
ItemSpacing="3">
<syncfusion:SfListView.LayoutManager>
<syncfusion:GridLayout SpanCount="2" />
</syncfusion:SfListView.LayoutManager>
<syncfusion:SfListView.ItemTemplate>
<DataTemplate>
<Grid RowSpacing="0" ColumnSpacing="0">
<Grid ColumnSpacing="0" RowSpacing="0" Opacity="1" Padding="5">
<Grid.RowDefinitions>
<RowDefinition Height="80"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<Image Grid.Row="0"
x:Name="selectionImage"
Aspect="AspectFill"
Source="{Binding Image}"/>
<tabView:SfTabView Grid.Row="1" TabHeight="20" >
<tabView:SfTabItem Title="Call">
<tabView:SfTabItem.Content>
<Grid Grid.Row="1">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="30"/>
<RowDefinition Height="30"/>
</Grid.RowDefinitions>
<Label Text="{Binding ImageTitle}" />
<Label Text="{Binding ImageName}" Grid.Row="1" HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand"/>
<Label Text="$650" Grid.Row="2" FontAttributes="Bold" FontSize="Title"/>
<Label Text="1234" Grid.Row="3"/>
<border:SfBorder Grid.Row="4" HeightRequest="30" CornerRadius="40">
<numeric:SfNumericUpDown VerticalOptions="Start" IsEditable="False" x:Name="numericUpDown" SpinButtonAlignment="Both" Value="5"/>
</border:SfBorder>
<buttons:SfButton Grid.Row="5" HeightRequest="30" BackgroundColor="LightGreen" x:Name="button" Text="Button" CornerRadius="3"/>
</Grid>
</tabView:SfTabItem.Content>
</tabView:SfTabItem>
<tabView:SfTabItem Title="Favorites">
<tabView:SfTabItem.Content>
<Grid BackgroundColor="Green" x:Name="FavoritesGrid" />
</tabView:SfTabItem.Content>
</tabView:SfTabItem>
</tabView:SfTabView>
</Grid>
</Grid>
</DataTemplate>
</syncfusion:SfListView.ItemTemplate>
</syncfusion:SfListView> |