0

I cannot find the answer in MSDN documentation.

All I want is a list of UIElement's events which are suppressed when IsHitTestVisible = false.

It must be here somewhere but I can't find it. It is for a UWP project but I'm guessing it will be almost the same as WPF

Paulustrious
  • 609
  • 1
  • 11
  • 17

1 Answers1

0

if I understand correctly the "IsHitTestVisible" property does not enable or disable any event it simply prevents the control from accepting any mouse input, you can still use your keyboard though...

Dark Templar
  • 1,130
  • 8
  • 10
  • It was badly phrased. I should have said suppressed. I just wanted to find a definitive list of which events will not take place. Maybe Hover, or the scroll wheel would still work for a listbox. I searched and searched and couldn't find a list. (Not even on StackOverflow) – Paulustrious May 09 '17 at 00:33
  • @Paulustrious There is no list for the which events are suppressed by IsHitTestVisible. You should be able to test the event with `IsHitTestVisible`. – Jayden Jun 01 '17 at 03:03