Actual Visibility in WPF

In WPF, an element may have β€œvisible” visibility, but may not actually be visible on the screen, because the parent (or parent of the parent) has minimized visibility.

I want to know if the item is actually displayed on the screen, without having to pass the parental control check of the visual tree.

Does anyone know how to do this?

Thanks in advance!

+4
source share
1 answer

I'm not sure where you are going to check this out, but you can use the IsVisible property.

+6
source

All Articles