Login.InstructionTextStyle 속성

정의

TableItemStyle 컨트롤의 지침 텍스트에 대한 설정을 정의하는 Login 개체에 대한 참조를 가져옵니다.

public:
 property System::Web::UI::WebControls::TableItemStyle ^ InstructionTextStyle { System::Web::UI::WebControls::TableItemStyle ^ get(); };
[System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)]
public System.Web.UI.WebControls.TableItemStyle InstructionTextStyle { get; }
[<System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)>]
member this.InstructionTextStyle : System.Web.UI.WebControls.TableItemStyle
Public ReadOnly Property InstructionTextStyle As TableItemStyle

속성 값

TableItemStyle

TableItemStyle 컨트롤 지침 텍스트의 스타일 설정이 포함된 Login에 대한 참조입니다.

특성

예제

다음 코드 예제에서는 속성에서 참조 InstructionTextStyle 하는 개체의 속성을 설정하여 명령 텍스트의 TableItemStyle 배경색과 명령 텍스트를 설정합니다.

<%@ Page Language="C#" AutoEventWireup="False"%>
<!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>ASP.NET Example</title>
</head>
<body>
    <form id="form1" runat="server">
        <asp:Login id="Login1" runat="server" 
            InstructionText="Enter your user name and password to log in.">
        <InstructionTextStyle Font-Bold="True" ForeColor="#E0E0E0" BackColor="Gray"></InstructionTextStyle>
        </asp:Login>
    </form>
</body>
</html>
<%@ Page Language="VB" AutoEventWireup="False"%>
<!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>ASP.NET Example</title>
</head>
<body>
    <form id="form1" runat="server">
        <asp:Login id="Login1" runat="server" 
            InstructionText="Enter your user name and password to log in.">
        <InstructionTextStyle Font-Bold="True" ForeColor="#E0E0E0" BackColor="Gray"></InstructionTextStyle>
        </asp:Login>
    </form>
</body>
</html>

설명

이 속성은 InstructionTextStyle 컨트롤에서 명령 텍스트 Login 의 모양을 정의합니다. 이 속성은 읽기 전용입니다. 그러나의 속성을 설정할 수는 TableItemStyle 개체를 반환 합니다. 형식에서 선언적으로 이러한 속성을 설정할 수 있습니다 Property-Subproperty, 여기서 Subproperty 의 속성을 나타냅니다 합니다 TableItemStyle 클래스 (예를 들어 InstructionTextStyle-ForeColor). 형식에서 속성을 프로그래밍 방식으로 설정할 수 있습니다 Property.Subproperty (예를 들어 InstructionTextStyle.ForeColor).

일반 설정 사용자 지정 배경색, 텍스트 색 및 글꼴 속성을 포함 합니다. 합니다 InstructionTextStyle 속성의 모양을 정의 합니다 InstructionText 속성입니다.

에 대 한 스타일 설정을 합니다 InstructionTextStyle 속성에 대 한 스타일 설정을 사용 하 여 병합 되는 Login 컨트롤. 모든 설정이 합니다 InstructionTextStyle 속성의 속성에서 해당 설정을 재정의 Login 제어 합니다.

다음 Login 스타일 속성은 InstructionTextStyle 설정:

모양을 정의 하는 데 템플릿을 사용할 때의 Login 컨트롤을 InstructionTextStyle 속성이 적용 되지 않습니다.

적용 대상

추가 정보