我有一个简单的代码,有一个富文本框,里面有一个图像,图像点击事件被触发两次。
我该如何解决这个问题?
代码:
<RichTextBox>
<Paragraph>
<InlineUIContainer>
<Image Source="/PhoneApp1;component/someimage.jpg" tap="image_OnTap" />
</InlineUIContainer>
</Paragraph>
</RichTextBox>
提前致谢
答案 0 :(得分:1)
static void image_OnTap(object sender, System.Windows.Input.GestureEventArgs e)
{
e.Handled = true; // <- The mark has completed the process,
MessageBox.Show ("ok");
}