我正在尝试使用SymbolIcon
进行XAML
点击。我一直在研究实现这一目标的最佳方法,但我还没有找到解决方案。最终产品是我想在单击符号时在我的代码中触发事件。这是我的符号:
<SymbolIcon x:Name="mySymbol"
RelativePanel.Below="myOtherProperty"
RelativePanel.AlignLeftWithPanel="True"
RelativePanel.AlignRightWithPanel="True"
Symbol="Contact"
Foreground="Black"/>
有人可以就如何点击这个符号提出建议吗?
答案 0 :(得分:1)
SymbolIcon
继承自UIElement
,因此有Tapped
和DoubleTapped
个事件。
只需处理其中一项。 e.g。
<SymbolIcon
DoubleTapped="UIElement_OnDoubleTapped"
Symbol="Contact"/>