PasswordRecovery.InstructionTextStyle Özellik
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Denetimdeki açıklayıcı metnin görünümünü tanımlayan stil özellikleri koleksiyonuna PasswordRecovery başvuru alır.
public:
property System::Web::UI::WebControls::TableItemStyle ^ InstructionTextStyle { System::Web::UI::WebControls::TableItemStyle ^ get(); };
[System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)]
public System.Web.UI.WebControls.TableItemStyle InstructionTextStyle { get; }
[<System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)>]
member this.InstructionTextStyle : System.Web.UI.WebControls.TableItemStyle
Public ReadOnly Property InstructionTextStyle As TableItemStyle
Özellik Değeri
Açıklayıcı metnin görünümünü tanımlayan özellikleri içeren bir TableItemStyle başvuru.
- Öznitelikler
Örnekler
Aşağıdaki kod örneğinde özelliğin nasıl ayarlanacağı gösterilmektedir InstructionTextStyle .
<%@ page language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
// <Snippet2>
void PasswordRecovery1_UserLookupError(object sender, EventArgs e)
{
PasswordRecovery1.UserNameInstructionText = "Enter the correct Web site user name.";
PasswordRecovery1.InstructionTextStyle.ForeColor = System.Drawing.Color.Red;
}
// </Snippet2>
// <Snippet4>
void PasswordRecovery1_AnswerLookupError(object sender, EventArgs e)
{
PasswordRecovery1.QuestionInstructionText = "Enter the correct answer to this question.";
PasswordRecovery1.InstructionTextStyle.ForeColor = System.Drawing.Color.Red;
}
// </Snippet4>
</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"
questioninstructiontext="Enter the answer to the password confirmation question."
usernameinstructiontext="Enter your Web site user name."
OnUserLookupError="PasswordRecovery1_UserLookupError" OnAnswerLookupError="PasswordRecovery1_AnswerLookupError">
<instructiontextstyle
font-size="Smaller"
font-names="Comic Sans MS"
font-italic="True"
forecolor="Blue">
</instructiontextstyle>
</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">
' <Snippet2>
Sub PasswordRecovery1_UserLookupError(ByVal sender As Object, ByVal e As System.EventArgs)
PasswordRecovery1.UserNameInstructionText = "Enter the correct Web site user name."
PasswordRecovery1.InstructionTextStyle.ForeColor = System.Drawing.Color.Red
End Sub
' </Snippet2>
' <Snippet4>
Sub PasswordRecovery1_AnswerLookupError(ByVal sender As Object, ByVal e As System.EventArgs)
PasswordRecovery1.QuestionInstructionText = "Enter the correct answer to this question."
PasswordRecovery1.InstructionTextStyle.ForeColor = System.Drawing.Color.Red
End Sub
' </Snippet4>
</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"
questioninstructiontext="Enter the answer to the password confirmation question."
usernameinstructiontext="Enter your Web site user name."
OnUserLookupError="PasswordRecovery1_UserLookupError" OnAnswerLookupError="PasswordRecovery1_AnswerLookupError">
<instructiontextstyle
font-size="Smaller"
font-names="Comic Sans MS"
font-italic="True"
forecolor="Blue">
</instructiontextstyle>
</asp:passwordrecovery>
</form>
</body>
</html>
Açıklamalar
özelliği, InstructionTextStyle denetimdeki açıklayıcı metnin PasswordRecovery görünümünü tanımlar. Bu özellik salt okunurdur; ancak, döndürdüğü nesnenin Style özelliklerini ayarlayabilirsiniz. Özellikleri biçiminde Property-Subproperty
bildirimli olarak ayarlayabilirsiniz; burada Subproperty
sınıfının bir özelliğini Style temsil eder (örneğin, InstructionTextStyle-ForeColor
). Ayrıca, özellikleri program aracılığıyla biçiminde Property.Subproperty
de ayarlayabilirsiniz (örneğin, InstructionTextStyle.ForeColor
).
Genel ayarlar arasında özel arka plan rengi, metin rengi ve yazı tipi özellikleri bulunur. InstructionTextStyle özelliği aşağıdaki özelliklerin görünümünü tanımlar:
özelliğine InstructionTextStyle yapılan stil ayarları, denetimin stil ayarlarıyla PasswordRecovery birleştirilir. özelliğinde InstructionTextStyle yapılan tüm ayarlar, denetimin özelliklerinde PasswordRecovery karşılık gelen ayarları geçersiz kılar.
Aşağıdaki PasswordRecovery denetim özellikleri özellikler tarafından InstructionTextStyle geçersiz kılınmaktadır:
Denetimin PasswordRecovery UserName görünümünü veya Soru görünümünü tanımlamak için şablonları kullandığınızda, özelliğin InstructionTextStyle hiçbir etkisi olmaz.