我希望在工具提示中显示来自多列单元格的信息(还需要一些计算)。
此代码仅显示如何为列表框的每一行制作工具提示,我需要更改什么?
<ListView>
<ListView.ItemContainerStyle>
<Style TargetType="{x:Type ListViewItem}">
<Setter Property="ToolTip" Value="{Binding Path=Name}" />
</Style>
</ListView.ItemContainerStyle>
<!--alle the columns and stuff-->
</ListView>