1
我用MVVM,鑑於旁邊代碼:Windows Phone中不起作用自來水事件圖像8
<Image Source="Content/img/heart_gray.png" Width="25" Height="25" Margin="0,0,5,0" HorizontalAlignment="Right" Visibility="{Binding LikeVisability}">
<i:Interaction.Triggers>
<i:EventTrigger EventName="Tap">
<cmd:EventToCommand Command="{Binding SetLikeCommand}" />
</i:EventTrigger>
</i:Interaction.Triggers>
</Image>
在視圖模型:
私人RelayCommand setLike;
public ICommand SetLikeCommand
{
get
{
return this.setLike ?? (this.setLike = new RelayCommand(this.SetLike));
}
}
private void SetLike()
{
var t = "fsdf";
}
當我在方法SetLike()中放置斷點時,程序沒有停止當我點擊圖像。也許我在視圖中做了什麼錯誤,綁定事件在哪裏?請幫忙!
將斷點的制定者,調用它呢? –
爲什麼不使用一個只顯示圖像的按鈕(無邊框)? –
我把斷點放在setter上,但它不起作用。 – Pisha91