0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Xamarin.Forms で初めてCollectionViewを使ったのでメモ書きとして残しておく

Last updated at Posted at 2020-02-12

参考にしたページ
https://devblogs.microsoft.com/xamarin/xamarin-forms-4-0-feature-preview-an-entirely-new-point-of-collectionview/

横に項目が5つ並んだリストを表示したかったので書いてみた。
2年前は先輩がカスタムレンダラーで作ってたので最近実装されたのかな?


<ScrollView x:Name="hoge" IsVisible="True">
            <CollectionView ItemsSource="{Binding fuga}">
                <CollectionView.ItemsLayout>
                    <GridItemsLayout Orientation="Vertical" Span="5"/>
                </CollectionView.ItemsLayout>
                <CollectionView.ItemTemplate>
                    <DataTemplate>
                        <Frame>
                            <Grid>
                                <Grid.RowDefinitions>
                                    <RowDefinition Height="Auto"/>
                                    <RowDefinition Height="*"/>
                                </Grid.RowDefinitions>
                                <Grid.ColumnDefinitions>
                                    <ColumnDefinition Width="*"/>
                                </Grid.ColumnDefinitions>
                                <Image Grid.Row="0" Grid.Column="0" Source="{Binding Image}"/>
                                <Label Grid.Row="1" Grid.Column="0" Text="{Binding Title}"/>
                            </Grid>
                        </Frame>
                    </DataTemplate>
                </CollectionView.ItemTemplate>
            </CollectionView>
        </ScrollView>

記事を書いていて思うけれども、画面キャプチャがあると文字を見ない自分はとても理解しやすいと思う反面、
文字を読もうとしないから成長しないんだろうなと思うこの頃。

プログラミングの本なんであんなに分厚いの?
職場にあった『システムを「外注」するときに読む本』試し読みしてたら 小説 駄文会話が書いてあって伝わりにくかった。勉強本としてはどうなのか悩ましい。

10年前ぐらいの異世界転生ラノベ(夢小説)読みたい。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?