Bagikan melalui


SiteMapPath.ShowToolTips Properti

Definisi

Mendapatkan atau mengatur nilai yang menunjukkan apakah SiteMapPath kontrol menulis atribut hyperlink tambahan untuk simpul navigasi hyperlink. Bergantung pada dukungan klien, saat mouse mengarahkan kursor ke hyperlink yang memiliki set atribut tambahan, TipsAlat ditampilkan.

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

Nilai Properti

true jika teks alternatif harus ditulis untuk simpul navigasi hyperlink; jika tidak, false. Nilai defaultnya adalah true.

Atribut

Contoh

Contoh kode berikut menunjukkan cara mengatur ShowToolTips properti secara deklaratif ke false di halaman Formulir Web.

<%@ 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>

Keterangan

Skenario yang paling umum adalah ketika Title atribut HTML ada untuk hyperlink HTML A Href . Misalnya, Microsoft Internet Explorer 4.0 dan yang lebih baru dan Netscape 6.0 dan yang lebih baru mengimplementasikan Title atribut sebagai TipsAlat melayang, sementara Opera 3.0 dan yang lebih baru mengimplementasikan Title atribut sebagai TipsAlat dan keterangan di area toolbar Opera. Tidak semua klien menampilkan TipsAlat untuk atribut hyperlink tambahan.

Nilai properti ini disimpan dalam status tampilan.

Properti ini tidak dapat diatur oleh tema atau tema lembar gaya. Untuk informasi selengkapnya, lihat ThemeableAttribute dan ASP.NET Tema dan Kulit.

Berlaku untuk

Lihat juga