如何增加 ToolTip 显示时间?
Posted
技术标签:
【中文标题】如何增加 ToolTip 显示时间?【英文标题】:How to increase ToolTip display time? 【发布时间】:2012-08-14 12:07:24 【问题描述】:我有一个 GridView,在其 RowDataBound 事件中,我将 ToolTip 分配如下:
protected void gv_RowDataBound(object sender, GridViewRowEventArgs e)
try
if (gv.HeaderRow != null && e.Row.RowType == DataControlRowType.DataRow)
e.Row.ToolTip = "Remarks: " + ((Label)e.Row.FindControl("lblRemarks")).Text;
catch (Exception ex)
BussinessLayer.RIBOException.Instance.HandleMe(this, ex);
这里,我想延长ToolTip的显示时间。 如何做到这一点?
【问题讨论】:
尝试以下链接:forums.asp.net/t/1580504.aspx/1 【参考方案1】:您需要使用ToolTipService
,特别是ShowDuration
attached property。
设置工具提示后,您应该能够执行以下操作:
ToolTipService.ShowDuration(e.Row, 10000)
【讨论】:
ToolTipService 用于 WPF,并且该问题使用 ASP.NET 标记 当我输入 ToolTipService 时,智能感知没有出现。为什么以及如何获得此属性?我需要使用任何命名空间吗? @thevan - 为什么在这对您不起作用并且对 ASP.NET 中的其他任何人都不起作用时,它被标记为已接受? 已经有一段时间了,但我相信这个问题在第一次发布时被错误地标记为 WPF。我不知道为什么它被接受了...... 为了记录,如果我们在谈论 WPF,持续时间以毫秒为单位。【参考方案2】:设置 ToolTipService.ShowDuration 属性。
【讨论】:
ToolTipService 用于 WPF,并且该问题使用 ASP.NET 标记 当我输入 ToolTipService 时,智能感知没有出现。为什么以及如何获得此属性?我需要使用任何命名空间吗? 在 asp.net 中,您必须在 javascript 中实现自己的工具提示,并在此处引入延迟属性如何做到这一点javascript.about.com/library/bltip1.htm【参考方案3】:<Button x:Name="btnHelp" ToolTip="For new paragraph : press Enter 
For new line : press Shift+Enter">
<ToolTipService.ShowDuration>15000</ToolTipService.ShowDuration>
</Button>
【讨论】:
【参考方案4】:这有效,提供间距和其他格式选项。上述接受的选项不起作用
<div runat="server" class="tooltip" id="divHowTo" style="display: inline-block; width:75px" data-tip="If you have problems: 

1.) Enter a users id 

2.) Choose a corresponding domain for the pin 

3.) Verify resolved name is correct 

4.) (If adding) Browse for Picture (jpg/png format) (square resolution) (240px X 240px or larger) 

5.) Choose a button to add or delete or view or save or clear " >
<asp:Image ID="imgHowTo" runat="server" ImageUrl="Images/howTo1s.jpg" Height="73px" Width="73px"/>
</div>
与(在之间)的类
.tooltip
display:inline-block;
width:64px;
height:64px;
position:relative;
margin:25px;
background-repeat: no-repeat;
background-position:50% 50%;
background-size:100%;
text-align:center;
line-break:auto;
white-space:pre-line;
.tooltip:hover:after
display:inline-block;
position:absolute;
top:-25px;
left:50%;
height:400px;
content: attr(data-tip);
font:bold 10px/14px Arial, sans-serif;
background:#f0f0f0;
color:#333;
white-space:pre-line;
border:1px solid #665;
padding:2px 4px;
width:150px;
margin:0 0 0 -75px;
border-radius:3px;
line-break:auto;
.tooltip:hover:before
border-top: 10px solid #665;
border-top: 10px solid #665;
margin-top: 5px;
content: "";
position: absolute;
border-left: 5px solid transparent;
border-right: 10px solid transparent;
top:-15px;
left: 50%;
margin-left: -10px;
line-break:auto;
white-space:pre-line;
【讨论】:
【参考方案5】:在 XAML 中你可以这样做:
<MyWpfElement ... ToolTipService.ShowDuration="60000" />
该值以毫秒为单位。示例代码最多显示一分钟的工具提示。
【讨论】:
以上是关于如何增加 ToolTip 显示时间?的主要内容,如果未能解决你的问题,请参考以下文章