1

在列表框瓷磚的效果我已經創建了這樣收縮在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> 

我需要當用戶點擊一個項目添加一個收縮效應列表框。我見過很多應用程序都這樣做,我不知道如何。

+0

你碰巧知道有這種行爲的免費應用程序嗎?其中大部分是 –

+0

。我喜歡的是「BBC News Mobile」應用程序 – Ateik

+0

我只是想到了,如果我從wp7工具包中添加一個空的上下文菜單,我會得到那種效果嗎? – Ateik

回答

3

我假設你在談論傾斜效應,它可以在wp7工具包中找到。

你可以這樣做在全球範圍內設置,

<phone:PhoneApplicationPage xmlns:toolkit="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone.Controls.Toolkit" 
      toolkit:TiltEffect.IsTiltEnabled="True"> 

一些好的tutorials

+1

謝謝!我正要創建一個故事板並開始我自己的視覺效果lol – Ateik

+0

很高興幫助! :) –