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 的引用。

属性

示例

下面的代码示例通过设置 属性引用LabelStyle的 对象的属性,将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">

<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 中的相应设置。

设置将覆盖LabelStyle以下Login样式属性:

使用模板定义控件的外观 Login 时, LabelStyle 属性不起作用。

适用于

另请参阅