高级工具提示的 DisplayTime 不起作用
我正在使用 http://tooltipservice.codeplex.com/
我对此控件有疑问,因为无论我设置什么值: 2或60秒,工具提示总是只有10秒。
与 telerik 无关,还是我使用不正确?
<telerik:GridViewDataColumn DataMemberBinding="{Binding CustomerDetail}" IsReadOnly="True" Header="Customer Detail" Width="0.8*" >
<telerik:GridViewDataColumn.CellTemplate>
<DataTemplate>
<TextBlock Text="{Binding CustomerDetail}" Margin="5,5,5,5" TextWrapping="Wrap" >
<ToolTipService.ToolTip>
<Controls:ToolTip InitialDelay="00:00:05" DisplayTime="00:00:02">
<Controls:ToolTip.Content>
<TextBlock Text="{Binding CustomerDetails}"/>
</Controls:ToolTip.Content>
</Controls:ToolTip>
</ToolTipService.ToolTip>
</TextBlock>
</DataTemplate>
</telerik:GridViewDataColumn.CellTemplate>
</telerik:GridViewDataColumn>
I'm using
http://tooltipservice.codeplex.com/
and I have a problem with this control because whatever value I set : 2 or 60 seconds, tooltip always me only for 10 seconds.
Is t related to telerik, or I use it incorrect?
<telerik:GridViewDataColumn DataMemberBinding="{Binding CustomerDetail}" IsReadOnly="True" Header="Customer Detail" Width="0.8*" >
<telerik:GridViewDataColumn.CellTemplate>
<DataTemplate>
<TextBlock Text="{Binding CustomerDetail}" Margin="5,5,5,5" TextWrapping="Wrap" >
<ToolTipService.ToolTip>
<Controls:ToolTip InitialDelay="00:00:05" DisplayTime="00:00:02">
<Controls:ToolTip.Content>
<TextBlock Text="{Binding CustomerDetails}"/>
</Controls:ToolTip.Content>
</Controls:ToolTip>
</ToolTipService.ToolTip>
</TextBlock>
</DataTemplate>
</telerik:GridViewDataColumn.CellTemplate>
</telerik:GridViewDataColumn>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的 InitialDelay 和 DisplayTime 不正确 - 应以毫秒为单位。
尝试:
Your InitialDelay and DisplayTime are incorrect - should be in milliseconds.
Try:
看起来您仍在使用默认的 ToolTipService 提供程序,您的代码读取
应该读取吗?
Looks like you're still using the default ToolTipService provider, your code reads
Should it read?