ツールチップに表示したいリストがありますが、それが空の場合、ツールチップは存在しないはずです。ただし、空の場合でも、非常に小さい空のボックスが表示されます。
<t:RadDropDownButton.ToolTip>
<t:RadToolTip Visibility="{Binding MyList, Converter={StaticResource EmptyListToCollapsedConverter}}"
Content="{Binding MyList}">
<t:RadToolTip.ContentTemplate>
<DataTemplate>
<ItemsControl ItemsSource="{Binding}"/>
</DataTemplate>
</t:RadToolTip.ContentTemplate>
</t:RadToolTip>
</t:RadDropDownButton.ToolTip>
これの何が問題なのですか?RadToolTip が使用されている場所ならどこでも発生します。可視性の設定が機能しません!