我有以下列表框綁定到圖像URL的數據庫表下面的列表框。當應用程序正在運行時,可以點擊每個單獨的圖像,並在圖像上出現一個淺藍色的選擇框(您可以知道每個單獨圖像何時被選中爲點擊)。我希望能夠做的是在點擊每個圖像時進行縮放。有誰知道我可以通過修改我目前使用的代碼來做到這一點嗎? (這樣做的原因是,我需要在水平列表框,這是這段代碼做什麼來顯示圖像。)C#Silverlight - 放大到水平列表框圖像項目
<ListBox x:Name="list1" HorizontalAlignment="Left" RenderTransformOrigin="0.5,0.5" Width="400" d:LayoutOverrides="HorizontalAlignment">
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Horizontal"/>
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
<ListBox.ItemTemplate>
<DataTemplate >
<Image Width="100" Height="100" Stretch="Fill" Source="{Binding LowResUrl}"/>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>