次の方法で共有


Login.LabelStyle プロパティ

定義

TableItemStyle コントロールのラベルの設定を定義する Login オブジェクトへの参照を取得します。

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 コントロールのラベルのスタイル設定を定義する Login への参照。

属性

次のコード例では、 プロパティによって参照されるオブジェクトのプロパティを設定して、テキスト ボックスのラベルを TableItemStyle 青の斜体のテキストに LabelStyle 設定します。

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

<script runat="server">
        void Page_Load(Object sender, EventArgs e) 
        {
            Login1.LabelStyle.ForeColor = System.Drawing.Color.Blue;
        }
</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
    <head runat="server">
    <title>ASP.NET Example</title>
</head>
<body>
        <form id="Form1" runat="server">
            <asp:Login id="Login1" runat="server">
                <LabelStyle Font-Italic="True"></LabelStyle>
            </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">

<script runat="server">
        Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)
            Login1.LabelStyle.ForeColor = System.Drawing.Color.Blue
        End Sub
</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
    <head runat="server">
    <title>ASP.NET Example</title>
</head>
<body>
        <form id="Form1" runat="server">
            <asp:Login id="Login1" runat="server">
                <LabelStyle Font-Italic="True"></LabelStyle>
            </asp:Login>

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

注釈

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

一般的な設定には、ユーザー設定の背景色、テキストの色、フォント プロパティが含まれます。 プロパティは LabelStyle 、次のプロパティの外観を定義します。

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

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

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

適用対象

こちらもご覧ください