在下面有一个作者类
Public Class Author
{
Public String Name{get;set;}
Public String Description{get;set;}
Public int NumberOfBooks{get;set;}
}
List<Author>
并通过 DataTemplate 对 Listbox 进行数据绑定,如下所示
<ListBox ItemsSource="{Binding Authors}" BorderThickness="0">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel ToolTipService.ToolTip="{Binding Description}" ToolTipService.Placement="Right">
<TextBlock Text="{Binding Name}"></TextBlock>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
如何使用Xaml描述性声明性绑定生成工具提示,如下所示
AuthorName ( NumberOfBooks)
Description