Question
I am not finding a description for the event OnTimeItemLink_DoubleClick(). Is there a workaround for this , possibly with OnTimeItemLink_SelectionChanged()?
Answer
You want to catch a dbl-click on a link?< ?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />
You are correct we have no such event…
{
if (e.Clicks == 2 && gantt1.MouseMoveKind==MouseMoveKind.linkReAssign)
{
gantt1.MouseMoveCancel();
MessageBox.Show(“Hey, dbl click on link”);
}
}