以下の著者クラスを持つ
Public Class Author
{
Public String Name{get;set;}
Public String Description{get;set;}
Public int NumberOfBooks{get;set;}
}
List<Author>
以下のようなDataTemplateを介したリストボックスへのデータバインディング
<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