PasswordRecovery.LabelStyle Properti
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Mendapatkan referensi ke kumpulan properti gaya yang menentukan tampilan label kotak teks dalam PasswordRecovery kontrol.
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
Nilai Properti
Referensi ke yang TableItemStyle berisi properti yang menentukan tampilan label kotak teks.
- Atribut
Contoh
Contoh kode berikut menggunakan LabelStyle properti untuk mengubah tampilan label kotak teks dalam PasswordRecovery kontrol.
<%@ Page Language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>ASP.NET Example</title>
</head>
<body>
<form id="form1" runat="server">
<asp:PasswordRecovery id="PasswordRecovery1" runat="server"
AnswerLabelText="Your answer:"
QuestionLabelText="Answer this question:"
UserNameLabelText="Your user name:">
<LabelStyle
font-bold="True"
forecolor="White"
backcolor="Navy">
</LabelStyle>
</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">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>ASP.NET Example</title>
</head>
<body>
<form id="form1" runat="server">
<asp:PasswordRecovery id="PasswordRecovery1" runat="server"
UserNameLabelText="Your user name:"
QuestionLabelText="Answer this question:"
AnswerLabelText="Your answer:">
<LabelStyle
font-bold="True"
forecolor="White"
backcolor="Navy">
</LabelStyle>
</asp:PasswordRecovery>
</form>
</body>
</html>
Keterangan
Properti LabelStyle menentukan tampilan label kotak teks dalam PasswordRecovery kontrol. Properti ini bersifat baca-saja; namun, Anda dapat mengatur properti objek yang Style dikembalikannya. Anda dapat mengatur properti ini secara deklaratif dalam formulir Property-Subproperty
, di mana Subproperty
mewakili properti Style kelas (misalnya, LabelStyle-ForeColor
). Anda juga dapat mengatur properti secara terprogram dalam formulir Property.Subproperty
(misalnya, LabelStyle.ForeColor
).
Pengaturan umum mencakup warna latar belakang kustom, warna teks, dan properti font.
Properti LabelStyle menentukan tampilan properti berikut:
Pengaturan gaya yang dibuat ke LabelStyle properti digabungkan dengan pengaturan gaya untuk PasswordRecovery kontrol. Pengaturan apa pun yang LabelStyle dibuat di properti akan mengambil alih pengaturan terkait di properti PasswordRecovery kontrol.
Properti berikut PasswordRecovery ini ditimpa oleh LabelStyle pengaturan:
Saat Anda menggunakan templat untuk menentukan tampilan PasswordRecovery tampilan UserName kontrol dan tampilan Pertanyaan, LabelStyle properti tidak berpengaruh.