Handle double click event
This discussion was imported from CodePlex
guilhermecgs wrote at 2014-05-17 00:04:
Hi,
I am trying to get the double click event from a ScatterSeries with no success. Is it even possible?
I am trying to get the double click event from a ScatterSeries with no success. Is it even possible?
scatterSeries.MouseDown += (s, e) =>
{
if (e.ChangedButton == OxyMouseButton.Left)
{
if (e.ClickCount == 2) // never happens
{
}
};
Customer support service by UserEcho