There is any way to change the background color of the mask semi-transparent shown when you tap on header made by a LongListSelector?
问问题
155 次
1 回答
0
您可以添加自定义 GropItemsPanel 模板。它覆盖了屏幕。
<toolkit:LongListSelector ItemsSource="{Binding Shows}" GroupItemsPanel="{StaticResource LongListItemsPanelTemplateCustom}" ></toolkit:LongListSelector>
<ItemsPanelTemplate x:Key="LongListItemsPanelTemplateCustom"><StackPanel Background="Red"/></ItemsPanelTemplate>
于 2013-08-09T17:20:52.617 回答