c# - How to check if a UIElement is visible in Silverlight? -
How can I check that any UIElement on the UI is currently showing on the UI?
UIElement.Visibility is property, but it is determined by the programmer to indicate that the element should be hiding or visible
I already check that the element is in viewquality Yes or No.
All this does not help if there is another element at the top which overlaps it.
There is a property UIElement in WPF. It sounds like to be able to do this, but it is unavailable in Silverlight.
Any thoughts?
Thanks
You can do some code to test the element.
Edit: Try something described here,
Comments
Post a Comment