Login.InstructionTextStyle Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient une référence à un objet TableItemStyle qui définit les paramètres du texte d'instruction dans le contrôle Login.
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
Valeur de propriété
Une référence au TableItemStyle qui contient les paramètres de style du texte d'instruction du contrôle Login.
- Attributs
Exemples
L’exemple de code suivant définit le texte d’instruction et la couleur d’arrière-plan du texte d’instruction en définissant les propriétés de l’objet TableItemStyle référencé par la InstructionTextStyle propriété .
<%@ 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">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>ASP.NET Example</title>
</head>
<body>
<form id="form1" runat="server">
<asp:Login id="Login1" runat="server"
InstructionText="Enter your user name and password to log in.">
<InstructionTextStyle Font-Bold="True" ForeColor="#E0E0E0" BackColor="Gray"></InstructionTextStyle>
</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">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>ASP.NET Example</title>
</head>
<body>
<form id="form1" runat="server">
<asp:Login id="Login1" runat="server"
InstructionText="Enter your user name and password to log in.">
<InstructionTextStyle Font-Bold="True" ForeColor="#E0E0E0" BackColor="Gray"></InstructionTextStyle>
</asp:Login>
</form>
</body>
</html>
Remarques
La InstructionTextStyle propriété définit l’apparence du texte d’instruction dans le Login contrôle. Cette propriété est en lecture seule ; Toutefois, vous pouvez définir les propriétés de l’objet qu’il TableItemStyle retourne. Vous pouvez définir ces propriétés de manière déclarative sous la forme Property-Subproperty
, où Subproperty
représente une propriété de la TableItemStyle classe (par exemple, InstructionTextStyle-ForeColor
). Vous pouvez définir la propriété par programmation dans le formulaire Property.Subproperty
(par exemple, InstructionTextStyle.ForeColor
).
Les paramètres courants incluent la couleur d’arrière-plan personnalisée, la couleur du texte et les propriétés de police. La InstructionTextStyle propriété définit l’apparence de la InstructionText propriété.
Les paramètres de style de la InstructionTextStyle propriété sont fusionnés avec les paramètres de style du Login contrôle. Tous les paramètres définis dans la InstructionTextStyle propriété remplacent les paramètres correspondants dans les propriétés du Login contrôle.
Les propriétés de style suivantes Login sont remplacées par InstructionTextStyle les paramètres :
Lorsque vous utilisez des modèles pour définir l’apparence du Login contrôle, la InstructionTextStyle propriété n’a aucun effet.