Xamarin ListView sample

<ListView x:Name="listView1" Margin="5"  RowHeight="80">
    <ListView.ItemTemplate>
        <DataTemplate>
            <ViewCell>
                <StackLayout Orientation="Horizontal" Margin="5">
                    <Label Text="{Binding Name}"
                           HorizontalTextAlignment="Center" VerticalTextAlignment="Center"
                           BackgroundColor="Aqua"
                           FontSize="Title"
                           HorizontalOptions="FillAndExpand"/>
                </StackLayout>
            </ViewCell>
        </DataTemplate>
    </ListView.ItemTemplate>
</ListView>
 

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です

このサイトはスパムを低減するために Akismet を使っています。コメントデータの処理方法の詳細はこちらをご覧ください