点击事件与符号图标

时间:2015-12-02 19:45:10

标签: c# xaml windows-10 symbols

我正在尝试使用SymbolIcon进行XAML点击。我一直在研究实现这一目标的最佳方法,但我还没有找到解决方案。最终产品是我想在单击符号时在我的代码中触发事件。这是我的符号:

 <SymbolIcon x:Name="mySymbol"
      RelativePanel.Below="myOtherProperty"
      RelativePanel.AlignLeftWithPanel="True"
      RelativePanel.AlignRightWithPanel="True"
      Symbol="Contact"
      Foreground="Black"/>

有人可以就如何点击这个符号提出建议吗?

1 个答案:

答案 0 :(得分:1)

SymbolIcon继承自UIElement,因此有TappedDoubleTapped个事件。

只需处理其中一项。 e.g。

<SymbolIcon
    DoubleTapped="UIElement_OnDoubleTapped"
    Symbol="Contact"/>