我有一个要在工具提示中显示的列表,但是当它为空时,工具提示不应该存在。但是,当它为空时,它仍然显示一个非常小的空框。
<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 的任何地方。设置其可见性不起作用!