0
在我的應用程序中,我想調整縮略圖圖像,當我點擊它時,所有圖像都在ItemTemplate中,其Source屬性綁定到圖片的url。WPF超鏈接圖像
我嘗試這樣的事情(這是我的DataTemplate文件)
<TextBlock>
<Hyperlink TextDecorations="None"
Command="helpers:StatusesCommands.ShowPicture"
CommandParameter="{Binding}">
<Image Source="{Binding Path=FirstPictureUrl}" Margin="5" />
</Hyperlink>
</TextBlock>
但在命令處理程序,我不知道怎麼去這個形象。 ExecutedRoutedEventArgs上的OriginalSource屬性設置爲HyperLink,Source設置爲我的控件。
也許有可能將CommangParameter設置爲我的嵌套圖像,但我不知道該怎麼做。你有什麼想法如何解決這個問題?
謝謝它的作品:) – ksopyla 2009-06-22 12:10:00