在列表框瓷磚的效果我已經創建了這樣收縮在Windows Phone
<ListBox Name="lstNews" SelectionChanged="lstNews_SelectionChanged">
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<toolkit:WrapPanel />
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
<ListBox.ItemTemplate>
<DataTemplate>
<Grid Margin="0,0,12,12" Width="180" Height="180">
<Grid.Background>
<ImageBrush>
<ImageBrush.ImageSource>
<BitmapImage CreateOptions="BackgroundCreation" UriSource="{Binding Picture}" />
</ImageBrush.ImageSource>
</ImageBrush>
</Grid.Background>
<StackPanel Background="#AA000000" VerticalAlignment="Bottom" Height="70" >
<TextBlock Foreground="White" TextWrapping="Wrap" VerticalAlignment="Bottom" FontSize="16" Text="{Binding Title}" />
</StackPanel>
</Grid>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
我需要當用戶點擊一個項目添加一個收縮效應列表框。我見過很多應用程序都這樣做,我不知道如何。
你碰巧知道有這種行爲的免費應用程序嗎?其中大部分是 –
。我喜歡的是「BBC News Mobile」應用程序 – Ateik
我只是想到了,如果我從wp7工具包中添加一個空的上下文菜單,我會得到那種效果嗎? – Ateik