Click here to Skip to main content
15,896,330 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi, I have a word document and opening in document viewer in WPF C#. word document is having some hyperlinks, to function these links I have added RequestNavigateEvent event handler so it's working fine but not working in touch device on touch of these links. My code is like this...
public MsDocumenViewer()
{
InitializeComponent();
documentViewer1.AddHandler(Hyperlink.RequestNavigateEvent, new RequestNavigateEventHandler(link_RequestNavigate));
}

void link_RequestNavigate(object sender, RequestNavigateEventArgs e)
{
string urlwithJunkCharacter = e.Uri.ToString();
}

Please help me to achieve this.
Thanks.
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900