2016-03-22 23:02:25 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8" ?>
|
|
|
|
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
2018-11-07 01:00:08 +03:00
|
|
|
x:Class="Xamarin.Forms.Controls.Issues.Issue2282">
|
2016-03-22 23:02:25 +03:00
|
|
|
<Grid>
|
|
|
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
<ColumnDefinition Width="*" />
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="*" />
|
|
|
|
<RowDefinition Height="100" />
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
<ListView x:Name="MyListView"
|
|
|
|
RowHeight="80"
|
|
|
|
ItemsSource="{Binding }">
|
|
|
|
<ListView.ItemTemplate>
|
|
|
|
<DataTemplate>
|
|
|
|
<ViewCell>
|
|
|
|
<ViewCell.View>
|
|
|
|
<Label Text="{Binding }"
|
|
|
|
TextColor="Green"
|
|
|
|
Font="28" />
|
|
|
|
</ViewCell.View>
|
|
|
|
</ViewCell>
|
|
|
|
</DataTemplate>
|
|
|
|
</ListView.ItemTemplate>
|
|
|
|
</ListView>
|
|
|
|
<Label Grid.Row="1" x:Name="LogLabel" Font="28" Text="XXX" TextColor="Red" />
|
|
|
|
</Grid>
|
2018-11-07 01:00:08 +03:00
|
|
|
</ContentPage>
|