次の方法で共有


PasswordRecovery.LabelStyle プロパティ

定義

PasswordRecovery コントロールのテキスト ボックスのラベルの外観を定義するスタイル プロパティのコレクションへの参照を取得します。

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

プロパティ値

テキスト ボックスのラベルの外観を定義するプロパティを格納している TableItemStyle への参照。

属性

次のコード例では、 プロパティを LabelStyle 使用して、コントロール内のテキスト ボックス ラベルの外観を PasswordRecovery 変更します。

<%@ 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>ASP.NET Example</title>
</head>
<body>
  <form id="form1" runat="server">
    <asp:PasswordRecovery id="PasswordRecovery1" runat="server" 
      AnswerLabelText="Your answer:" 
      QuestionLabelText="Answer this question:" 
      UserNameLabelText="Your user name:">
      <LabelStyle 
        font-bold="True" 
        forecolor="White"
        backcolor="Navy">
      </LabelStyle>
    </asp:PasswordRecovery>
  </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>ASP.NET Example</title>
</head>
<body>
  <form id="form1" runat="server">
    <asp:PasswordRecovery id="PasswordRecovery1" runat="server" 
      UserNameLabelText="Your user name:" 
      QuestionLabelText="Answer this question:" 
      AnswerLabelText="Your answer:">
      <LabelStyle 
        font-bold="True" 
        forecolor="White"
        backcolor="Navy">
      </LabelStyle>
    </asp:PasswordRecovery>
  </form>
</body>
</html>

注釈

プロパティは LabelStyle 、コントロール内のテキスト ボックス ラベルの外観を PasswordRecovery 定義します。 このプロパティは読み取り専用です。ただし、返されるオブジェクトのプロパティを Style 設定できます。 これらのプロパティは、 という形式 Property-Subpropertyで宣言的に設定できます。ここで Subproperty 、 は クラスの Style プロパティを表します (例: LabelStyle-ForeColor)。 フォーム Property.Subproperty でプログラムでプロパティを設定することもできます (例: LabelStyle.ForeColor)。

一般的な設定には、ユーザー設定の背景色、テキストの色、およびフォント プロパティが含まれます。

プロパティは LabelStyle 、次のプロパティの外観を定義します。

プロパティに対して LabelStyle 行われたスタイル設定は、コントロールのスタイル設定 PasswordRecovery と結合されます。 プロパティで行われた設定は、 LabelStyle コントロールのプロパティの対応する設定を PasswordRecovery オーバーライドします。

PasswordRecovery のプロパティは、設定によって LabelStyle オーバーライドされます。

テンプレートを使用してコントロールの PasswordRecovery UserName ビューと質問ビューの外観を定義する場合、 LabelStyle プロパティは無効です。

適用対象

こちらもご覧ください