Hi all,I have two overlapping scrollviewers and I need to show a tooltip for each visible element inside both scrollviewers. The problem is that only topmost scrollviewer''s elements show the tooltip. I have googled and I have read some pages like Hit Testing in the Visual Layer without luck.Here a code example where only the second tooltip is shown (green rectangle):<Grid Height="100" Width="300"> <ScrollViewer> <Rectangle Fill="Red" Width="100" HorizontalAlignment="Left" ToolTip="Red" /> </ScrollViewer> <ScrollViewer> <Rectangle Fill="Green" Width="100" HorizontalAlignment="Right" ToolTip="Green" /> </ScrollViewer></Grid>Any idea?Thanks,Raúl 解决方案 这篇关于重叠的滚动查看器中的Elements的工具提示的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
10-22 17:45