SiteMapPath.ShowToolTips 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定值,指出 SiteMapPath 控制項是否要為超連結巡覽節點撰寫其他的超連結屬性。 依據用戶端的支援,當滑鼠停留在擁有其他屬性集的超連結上,則會顯示工具提示。
public:
virtual property bool ShowToolTips { bool get(); void set(bool value); };
[System.Web.UI.Themeable(false)]
public virtual bool ShowToolTips { get; set; }
[<System.Web.UI.Themeable(false)>]
member this.ShowToolTips : bool with get, set
Public Overridable Property ShowToolTips As Boolean
屬性值
如果應該為超連結巡覽節點撰寫替代文字,則為 true
,否則為 false
。 預設值是 true
。
- 屬性
範例
下列程式代碼範例示範如何在 Web Forms 頁面中以宣告方式將 屬性false
設定ShowToolTips為 。
<%@ Page language="c#"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Catalog</title>
</head>
<body>
<form id="Form1" method="post" runat="server">
<p><asp:SiteMapPath runat="server" ID="SiteMapPath1"
RootNodeStyle-Font-Bold="true"
RootNodeStyle-Font-Names="Arial Black"
RootNodeStyle-Font-Italic="True"
RootNodeStyle-ForeColor="Green"
CurrentNodeStyle-ForeColor="Orange"
PathSeparator="<::>"
PathDirection="CurrentToRoot"
RenderCurrentNodeAsLink="false"
ShowToolTips="false"/></p>
</form>
</body>
</html>
<%@ Page language="VB"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Catalog</title>
</head>
<body>
<form id="Form1" method="post" runat="server">
<p><asp:SiteMapPath runat="server" ID="SiteMapPath1"
RootNodeStyle-Font-Bold="true"
RootNodeStyle-Font-Names="Arial Black"
RootNodeStyle-Font-Italic="True"
RootNodeStyle-ForeColor="Green"
CurrentNodeStyle-ForeColor="Orange"
PathSeparator="<::>"
PathDirection="CurrentToRoot"
RenderCurrentNodeAsLink="false"
ShowToolTips="false"/></p>
</form>
</body>
</html>
備註
最常見的案例是 HTML 超連結的 HTML A Href
屬性存在時Title
。 例如,Microsoft Internet Explorer 4.0 和更新版本和 Netscape 6.0 和更新版本會將屬性實 Title
作為暫留工具提示,而 Opera 3.0 和更新版本會將 Title
屬性實作為 Opera 工具欄區域中的工具提示和標題。 並非所有客戶端都會顯示其他超連結屬性的工具提示。
此屬性的值會儲存在檢視狀態中。
這個屬性無法由佈景主題或樣式表主題設定。 如需詳細資訊,請參閱 ThemeableAttribute 和 ASP.NET 主題和面板。