图像点击两次

时间:2012-02-28 14:39:09

标签: image events richtextbox windows-phone-7.1 tap

我有一个简单的代码,有一个富文本框,里面有一个图像,图像点击事件被触发两次。

我该如何解决这个问题?

代码:

    <RichTextBox>
        <Paragraph>
            <InlineUIContainer>
                <Image Source="/PhoneApp1;component/someimage.jpg" tap="image_OnTap" />
            </InlineUIContainer>
        </Paragraph>
    </RichTextBox>

提前致谢

1 个答案:

答案 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");
}