我有一个列表框及其绑定。我有类似这样的列表框项目的工具提示
<ListBox.ItemContainerStyle>
<Style TargetType="{x:Type ListBoxItem}">
<!--<EventSetter Event="MouseEnter" Handler="ListBox_MouseEnter" />-->
<!--<EventSetter Event="MouseEnter" Handler="ListBox_MouseLeave" />-->
<Setter Property="ToolTip" Value="{StaticResource mytooltip}"></Setter>
</Style>
</ListBox.ItemContainerStyle>
现在我想在工具提示中显示一个数据网格,其中数据绑定....
请问有什么想法???
谢谢你