maui-linux/Xamarin.Forms.Controls/LegacyRepro/Page1.xaml

13 строки
646 B
Plaintext
Исходник Обычный вид История

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"
xmlns:CustomViewCell="clr-namespace:App2;assembly=Xamarin.Forms.Controls"
x:Class="App2.Page1">
<ListView x:Name="itemListView" RowHeight="75" HeightRequest="700" SeparatorColor="#061018" BackgroundColor="Blue" HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand">
<ListView.ItemTemplate>
<DataTemplate>
<CustomViewCell:SampleViewCell />
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</ContentPage>