0
私はこのリストビューを持っていますが、セクションタイトルのスタイルを設定する方法はわかりません。 Xamarinではどのようにすることができますか?あなたはDataTemplate
にViewCell
でListView.GroupHeaderTemplate
を使用したいと思うでしょうそのXamarinでセクションタイトルのフォントスタイルを変更するにはどうすればよいですか?
<ListView x:Name ="listView"
IsGroupingEnabled="true"
GroupDisplayBinding="{Binding sectionHeader}"
HasUnevenRows="true">
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<StackLayout Orientation="Horizontal" Padding="10">
<StackLayout Orientation="Vertical">
<Label Text="{Binding Title1}" FontSize="12" FontAttributes="Bold"/>
<Label Text="{Binding Title2}" FontSize="12" FontAttributes="Bold"/>
<Label Text="{Binding SubTitle}" FontSize="12"/>
</StackLayout>
<Image Source="new_feedback_0.png" HorizontalOptions="EndAndExpand"/>
</StackLayout>
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>