UWP equivalent function to FindAncestor in uwp
问题 I have a list of orders and when the order status is Cancelled , I want to blink the text. So far, my code works. However, sometimes it will throws exception: WinRT information: Cannot resolve TargetName lblOrderStatus For some reason lblOrderStatus can be found. So, I want to use "FindAncestor", but FindAncestor doesn't exists in UWP. Is there any equivalent function to FindAncestor in uwp? Here is my code: <ItemsControl x:Name="Orders" Grid.Row="1" Background="Transparent"> ... ... ...