Menu.StaticPopOutImageTextFormatString プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
静的メニュー項目にサブメニューがあることを示すために使用されるポップアウト イメージの代替テキストを取得または設定します。
public:
property System::String ^ StaticPopOutImageTextFormatString { System::String ^ get(); void set(System::String ^ value); };
public string StaticPopOutImageTextFormatString { get; set; }
member this.StaticPopOutImageTextFormatString : string with get, set
Public Property StaticPopOutImageTextFormatString As String
プロパティ値
ポップアウト イメージの代替テキスト。 既定値は空の文字列 ("") です。このプロパティが設定されていないことを示します。
例
次のコード例では、 プロパティを StaticPopOutImageTextFormatString 使用して、静的メニュー項目にサブメニューがあることを示すために使用されるイメージの代替テキストを指定する方法を示します。 このテキストは、ユーザーが画像の上にマウス ポインターを置くと、ツールヒントとして表示されます。
<%@ 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 runat="server">
<title>Menu StaticPopoutImageText and StaticPopoutImageUrl Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>Menu StaticPopoutImageText and StaticPopoutImageUrl Example</h3>
<asp:menu id="NavigationMenu"
staticdisplaylevels="1"
staticsubmenuindent="10"
orientation="Vertical"
target="_blank"
StaticPopOutImageTextFormatString="More..."
staticpopoutimageurl="Images/Popout.jpg"
runat="server">
<items>
<asp:menuitem navigateurl="Home.aspx"
text="Home"
tooltip="Home">
<asp:menuitem navigateurl="Music.aspx"
text="Music"
tooltip="Music">
<asp:menuitem navigateurl="Classical.aspx"
text="Classical"
tooltip="Classical"/>
<asp:menuitem navigateurl="Rock.aspx"
text="Rock"
tooltip="Rock"/>
<asp:menuitem navigateurl="Jazz.aspx"
text="Jazz"
tooltip="Jazz"/>
</asp:menuitem>
<asp:menuitem navigateurl="Movies.aspx"
text="Movies"
tooltip="Movies">
<asp:menuitem navigateurl="Action.aspx"
text="Action"
tooltip="Action"/>
<asp:menuitem navigateurl="Drama.aspx"
text="Drama"
tooltip="Drama"/>
<asp:menuitem navigateurl="Musical.aspx"
text="Musical"
tooltip="Musical"/>
</asp:menuitem>
</asp:menuitem>
</items>
</asp:menu>
</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 runat="server">
<title>Menu StaticPopoutImageText and StaticPopoutImageUrl Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>Menu StaticPopoutImageText and StaticPopoutImageUrl Example</h3>
<asp:menu id="NavigationMenu"
staticdisplaylevels="1"
staticsubmenuindent="10"
orientation="Vertical"
target="_blank"
StaticPopOutImageTextFormatString="More..."
staticpopoutimageurl="Images/Popout.jpg"
runat="server">
<items>
<asp:menuitem navigateurl="Home.aspx"
text="Home"
tooltip="Home">
<asp:menuitem navigateurl="Music.aspx"
text="Music"
tooltip="Music">
<asp:menuitem navigateurl="Classical.aspx"
text="Classical"
tooltip="Classical"/>
<asp:menuitem navigateurl="Rock.aspx"
text="Rock"
tooltip="Rock"/>
<asp:menuitem navigateurl="Jazz.aspx"
text="Jazz"
tooltip="Jazz"/>
</asp:menuitem>
<asp:menuitem navigateurl="Movies.aspx"
text="Movies"
tooltip="Movies">
<asp:menuitem navigateurl="Action.aspx"
text="Action"
tooltip="Action"/>
<asp:menuitem navigateurl="Drama.aspx"
text="Drama"
tooltip="Drama"/>
<asp:menuitem navigateurl="Musical.aspx"
text="Musical"
tooltip="Musical"/>
</asp:menuitem>
</asp:menuitem>
</items>
</asp:menu>
</form>
</body>
</html>
注釈
静的メニュー項目にサブメニューが含まれている場合は、ユーザーがメニューを展開できることを示す画像を表示できます。 プロパティを StaticPopOutImageTextFormatString 使用して、この画像の代替テキストを指定します。
画像を表示するには、次の 2 つの方法があります。
組み込みイメージを StaticEnableDefaultPopOutImage 使用するには、 プロパティ
true
を に設定します (既定値)。プロパティを StaticPopOutImageUrl 設定して、カスタム イメージを指定します。
Note
このプロパティは、組み込みイメージとカスタム イメージの両方に適用されます。
適用対象
こちらもご覧ください
.NET