Hi guys,
Is there a way to catch the MouseLeftButtonDown(or Up) on an AppointmentItem? I have tried the following, but it doesn't work.
.......
appointmentItem.MouseLeftButtonUp += HandleMouseLeftButtonUp;
.......
private void HandleMouseLeftButtonUp(object sender, MouseButtonEventArgs e)
{ ..... }
.......
Strangely the same construction works fine for the MouseRightButtonUp.
Please advise?
Kind regards