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

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


谁能建议我如何使该符号可点击?

最佳答案

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

只需处理其中之一。例如

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

10-08 14:31