我有一个带有以下 DataTemplate 的 ContentControl
xmlns:oxy="clr-namespace:OxyPlot.Wpf;assembly=OxyPlot.Wpf"
....
<DataTemplate DataType="{x:Type y:DataGraph}">
<Grid>
<!--Because PlotView is under Label it doesnt respond to mouse actions (click, zoom, etc)-->
<oxy:PlotView Model="{Binding PlotViewModel}"/>
<!--Want Label to be displayed on top-->
<Label Content="some text"/>
</Grid>
</DataTemplate>
我希望在 oxy:PlotView 上显示一些文本,但如果这样做,oxy:PlotView 将停止响应鼠标操作(缩放、单击等)。
如何显示标签悬停在另一个控件上,但让底部控件仍然响应鼠标操作?