我在WPF应用程序中使用SharpVectors库显示SVG图标,而不是传统的PNG。我在整个XAML中使用以下基本模式:
map
问题是我在按钮上设置的工具提示没有通过questionContainerView.addSubview(questionTextLabel) // first time
addSubview(questionTextLabel) // second time the questionTextLabel is removed from questionContainerView
显示。仅在鼠标悬停在<Button ToolTip="My doodad">
<svgc:SvgViewbox Height="16" Width="16" Margin="2" Source="pack://application:,,,/Resources/svg/mydoodad.svg" />
</Button>
元素未覆盖的按钮的2px边距上时显示。
与此相反,工具提示按预期显示在整个按钮表面:
SvgViewbox
我尝试直接在SvgViewbox
上设置工具提示,但这没什么区别。我还可以做些什么来做这项工作?
答案 0 :(得分:1)
我对SvgViewbox
不熟悉,但尝试将{{1}的属性 IsHitTestVisible
设置为 False
}}:
SvgViewbox