What is the property to set default the cursor and provide access to a link when hovering over the link without having to press the Ctrl key?
HI
Have you been able to resolve your issue ? If you still have any concerns or questions I will be glad to help. If you need any additional assistance don’t hesitate to ask.
Regards
Hello crabman,
At that moment we have not such kind functionality in our UltraFormattedtextEditor. You could achieve desired behavior if you are using UltraFormattedLinkLabel. If it is not possible to use UltraFormattedLinkLabel in your scenario, then maybe you could try to code below:
private void ultraFormattedTextEditor1_LinkClicked(object sender, Infragistics.Win.FormattedLinkLabel.LinkClickedEventArgs e) { MessageBox.Show("LinkClicked event fired"); } private void ultraFormattedTextEditor1_MouseClick(object sender, MouseEventArgs e) { if (Cursor.Current == Cursors.Hand) { ultraFormattedTextEditor1_LinkClicked(sender, null); } }
private void ultraFormattedTextEditor1_LinkClicked(object sender, Infragistics.Win.FormattedLinkLabel.LinkClickedEventArgs e)
{
MessageBox.Show("LinkClicked event fired");
}
private void ultraFormattedTextEditor1_MouseClick(object sender, MouseEventArgs e)
if (Cursor.Current == Cursors.Hand)
ultraFormattedTextEditor1_LinkClicked(sender, null);
Let me know if you have any questions.