Login.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 TableItemStyle objek yang menentukan pengaturan untuk Login label 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 TableItemStyle yang menentukan pengaturan Login gaya label kontrol.
- Atribut
Contoh
Contoh kode berikut mengatur label kotak teks ke teks miring biru dengan mengatur properti objek yang dirujuk TableItemStyleLabelStyle oleh properti .
<%@ 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>
Keterangan
Properti LabelStyle menentukan tampilan label kotak teks dalam Login kontrol. Properti ini bersifat baca-saja; namun, Anda dapat mengatur properti objek yang TableItemStyle dikembalikannya. Anda dapat mengatur properti ini secara deklaratif dalam formulir Property-Subproperty
, di mana Subproperty
mewakili properti TableItemStyle kelas (misalnya, LabelStyle-ForeColor
). Anda 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 untuk LabelStyle properti digabungkan dengan pengaturan gaya untuk Login kontrol. Pengaturan apa pun yang LabelStyle dibuat di properti mengambil alih pengaturan yang sesuai di properti Login kontrol.
Properti gaya berikut Login ini ditimpa oleh LabelStyle pengaturan:
Saat Anda menggunakan templat untuk menentukan tampilan Login kontrol, LabelStyle properti tidak berpengaruh.