다음을 통해 공유


Menu.StaticSubMenuIndent 속성

정의

정적 메뉴에서 하위 메뉴를 들여쓸 공간 크기(픽셀)를 가져오거나 설정합니다.

public:
 property System::Web::UI::WebControls::Unit StaticSubMenuIndent { System::Web::UI::WebControls::Unit get(); void set(System::Web::UI::WebControls::Unit value); };
[System.Web.UI.Themeable(true)]
public System.Web.UI.WebControls.Unit StaticSubMenuIndent { get; set; }
[<System.Web.UI.Themeable(true)>]
member this.StaticSubMenuIndent : System.Web.UI.WebControls.Unit with get, set
Public Property StaticSubMenuIndent As Unit

속성 값

Unit

정적 메뉴에서 하위 메뉴를 들여쓸 공간 크기(픽셀)를 나타내는 Unit입니다. 기본값은 0입니다.

특성

예외

선택한 Unit 값이 0보다 작은 경우

예제

다음 코드 예제를 사용 하는 방법에 설명 합니다 StaticSubMenuIndent 10 픽셀 x 정적 메뉴의 하위 메뉴 항목을 들여쓰기 하는 속성입니다.


<%@ 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 StaticSubMenuIndent Example</title>
</head>
<body>
    <form id="form1" runat="server">
    
      <h3>Menu StaticSubMenuIndent Example</h3>
    
      <asp:menu id="NavigationMenu"
        staticdisplaylevels="2"
        staticsubmenuindent="10" 
        orientation="Vertical"
        runat="server">

        <items>
          <asp:menuitem text="Home"
            tooltip="Home">
            <asp:menuitem text="Music"
              tooltip="Music">
              <asp:menuitem text="Classical"
                tooltip="Classical"/>
              <asp:menuitem text="Rock"
                tooltip="Rock"/>
              <asp:menuitem text="Jazz"
                tooltip="Jazz"/>
            </asp:menuitem>
            <asp:menuitem text="Movies"
              tooltip="Movies">
              <asp:menuitem text="Action"
                tooltip="Action"/>
              <asp:menuitem text="Drama"
                tooltip="Drama"/>
              <asp:menuitem 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 StaticSubMenuIndent Example</title>
</head>
<body>
    <form id="form1" runat="server">
    
      <h3>Menu StaticSubMenuIndent Example</h3>
    
      <asp:menu id="NavigationMenu"
        staticdisplaylevels="2"
        staticsubmenuindent="10" 
        orientation="Vertical"
        runat="server">

        <items>
          <asp:menuitem text="Home"
            tooltip="Home">
            <asp:menuitem text="Music"
              tooltip="Music">
              <asp:menuitem text="Classical"
                tooltip="Classical"/>
              <asp:menuitem text="Rock"
                tooltip="Rock"/>
              <asp:menuitem text="Jazz"
                tooltip="Jazz"/>
            </asp:menuitem>
            <asp:menuitem text="Movies"
              tooltip="Movies">
              <asp:menuitem text="Action"
                tooltip="Action"/>
              <asp:menuitem text="Drama"
                tooltip="Drama"/>
              <asp:menuitem text="Musical"
                tooltip="Musical"/>
            </asp:menuitem>
          </asp:menuitem>
        </items>
      
      </asp:menu>

    </form>
  </body>
</html>

설명

정적 메뉴에서 둘 이상의 메뉴 수준을 표시 하는 경우 (경우 합니다 StaticDisplayLevels 속성이 1 보다 큰 값으로 설정 됩니다)를 사용 하 여를 StaticSubMenuIndent 정적 메뉴에서 하위 메뉴 항목을 들여쓰기에 사용 되는 픽셀 수를 지정 하는 속성입니다.

적용 대상

추가 정보