PasswordRecovery.SuccessTextStyle 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取对样式属性集合的引用,这些属性定义 PasswordRecovery 控件的“成功”视图中显示的文本外观。
public:
property System::Web::UI::WebControls::TableItemStyle ^ SuccessTextStyle { System::Web::UI::WebControls::TableItemStyle ^ get(); };
[System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)]
public System.Web.UI.WebControls.TableItemStyle SuccessTextStyle { get; }
[<System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)>]
member this.SuccessTextStyle : System.Web.UI.WebControls.TableItemStyle
Public ReadOnly Property SuccessTextStyle As TableItemStyle
属性值
对 TableItemStyle(包含定义“成功”视图中显示的文本的外观的属性)的引用。
- 属性
示例
下面的代码示例使用 SuccessTextStyle 属性更改 属性的外观 SuccessText 。
<%@ page language="VB" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
</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:passwordrecovery id="PasswordRecovery1" runat="server"
successtext="Your password has been sent to the email address in our files.">
<successtextstyle font-names="Arial" forecolor="Green"></successtextstyle>
</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">
<script runat="server">
</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:passwordrecovery id="PasswordRecovery1" runat="server"
successtext="Your password has been sent to the email address in our files.">
<successtextstyle font-names="Arial" forecolor="Green"></successtextstyle>
</asp:passwordrecovery>
</form>
</body>
</html>
注解
属性 SuccessTextStyle 定义控件的“成功”视图中 PasswordRecovery 文本的外观。 此属性是只读的;但是,可以设置它返回的对象 Style 的属性。 可以在 窗体 Property-Subproperty
中以声明方式设置这些属性,其中 Subproperty
表示 Style 类 (例如 SuccessTextStyle-ForeColor
) 的属性。 还可以以编程方式在窗体 Property.Subproperty
中 (设置属性, SuccessTextStyle.ForeColor
例如,) 。
常见设置包括自定义背景色、文本颜色和字体属性。
属性的 SuccessTextStyle 样式设置与控件的样式设置 PasswordRecovery 合并。 在 属性中 SuccessTextStyle 所做的任何设置都覆盖控件属性 PasswordRecovery 中的相应设置。
设置将重写SuccessTextStyle以下PasswordRecovery属性:
使用模板定义控件的“成功”视图 PasswordRecovery 的外观时, SuccessTextStyle 属性不起作用。