Hi all
I need hyperlink mouseleftbuttondown with two actions
if (e.ChangedButton == MouseButton.Left && e.ClickCount == 2)
{
MessageBox.Show("hey");
}
else if (e.ChangedButton == MouseButton.Left && e.ClickCount == 1)
{
MessageBox.Show("Hellow");
}
i think above procedure is correct, but i click the Mouseleftbutton down event is not fired
if i tired hyperlink click event it's fire... i need Mouseleftbuttondown event
pls help out me
Thanks
Ram