在下面的XAML中,ToolTip正確地綁定到RelativeSource Self。但是,我不能爲我的生活工作如何獲得在評論塊的TextBlock指SelectedItem.DescriptionWPF - 簡單相對路徑 - FindAncestor
<Controls:RadComboBoxWithCommand x:Name="cmbPacking"
Grid.Row="2"
Grid.Column="5"
ItemsSource="{Binding PackingComboSource}"
DisplayMemberPath="DisplayMember"
SelectedValuePath="SelectedValue"
SelectedValue="{Binding ElementName=dataGrid1, Path=SelectedItem.PackingID}"
ToolTip="{Binding RelativeSource={RelativeSource Self}, Path=SelectedItem.Description}"
IsSynchronizedWithCurrentItem="True"
Style="{StaticResource comboBox}">
<!-- <Controls:RadComboBoxWithCommand.ToolTip>-->
<!-- <TextBlock Text="{Binding RelativeSource={RelativeSource Self}, Path=SelectedItem.Description}" TextWrapping="Wrap" Width="50"/>-->
<!-- </Controls:RadComboBoxWithCommand.ToolTip>-->
</Controls:RadComboBoxWithCommand>
我將不勝感激任何建議
謝謝 - 傑里米
不幸的是,這並不工作,也不使用FindAncestor有用。但是,經過多一點研究,我發現這篇文章http://blogs.msdn.com/tom_mathews/archive/2006/11/06/binding-a-tooltip-in-xaml.aspx。您需要綁定到PlacementTarge。 – 2010-04-05 21:06:11