Login.CheckBoxStyle 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取对定义 Style “记住我”复选框设置的对象的引用。
public:
property System::Web::UI::WebControls::TableItemStyle ^ CheckBoxStyle { System::Web::UI::WebControls::TableItemStyle ^ get(); };
[System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)]
public System.Web.UI.WebControls.TableItemStyle CheckBoxStyle { get; }
[<System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)>]
member this.CheckBoxStyle : System.Web.UI.WebControls.TableItemStyle
Public ReadOnly Property CheckBoxStyle As TableItemStyle
属性值
对定义控件“记住我”复选框的样式设置Login的引用Style。
- 属性
示例
下面的代码示例通过设置属性引用CheckBoxStyle的对象的属性Style,将“记住我”复选框的文本颜色设置为蓝色,并将字体样式设置为斜体。
<%@ 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.CheckBoxStyle.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">
<CheckBoxStyle Font-Italic="True"></CheckBoxStyle>
</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.CheckBoxStyle.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">
<CheckBoxStyle Font-Italic="True"></CheckBoxStyle>
</asp:Login>
</form>
</body>
</html>
注解
该 CheckBoxStyle 属性获取对 Style 用于更改控件“记住我”复选框外观的对象的 Login 引用。
此属性为只读;但是,可以设置它返回的对象的属性 Style 。 可以在窗体 Property-Subproperty中以声明方式设置这些属性,其中 Subproperty 表示 Style 类的属性(例如, CheckBoxStyle-ForeColor)。 您可以以编程方式在窗体 Property.Subproperty 中设置属性(例如, CheckBoxStyle.ForeColor)。
常见设置包括自定义背景色、文本颜色和字体属性。 该 CheckBoxStyle 属性定义属性的外观 RememberMeText 。
属性的 CheckBoxStyle 样式设置与控件的 Login 样式设置合并。 属性 CheckBoxStyle 中所做的任何设置都覆盖控件属性 Login 中的相应设置。
以下 Login 控件样式属性由 CheckBoxStyle 设置重写:
使用模板定义控件的外观 Login 时,该 CheckBoxStyle 属性不起作用。