зеркало из https://github.com/DeGsoft/maui-linux.git
18 строки
642 B
XML
18 строки
642 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
x:Class="Xamarin.Forms.Controls.Issues.Bugzilla39463">
|
|
<ListView x:Name="lvView" RowHeight="100" >
|
|
<ListView.ItemTemplate>
|
|
<DataTemplate>
|
|
<ViewCell>
|
|
<ViewCell.View>
|
|
<ContentView BackgroundColor="Yellow">
|
|
<Label Text="{Binding }" TextColor="Black" />
|
|
</ContentView>
|
|
</ViewCell.View>
|
|
</ViewCell>
|
|
</DataTemplate>
|
|
</ListView.ItemTemplate>
|
|
</ListView>
|
|
</ContentPage> |