PasswordRecovery.SubmitButtonStyle Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene un riferimento a un insieme di proprietà che definiscono l'aspetto dei pulsanti Invia nel controllo PasswordRecovery.
public:
property System::Web::UI::WebControls::Style ^ SubmitButtonStyle { System::Web::UI::WebControls::Style ^ get(); };
[System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)]
public System.Web.UI.WebControls.Style SubmitButtonStyle { get; }
[<System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)>]
member this.SubmitButtonStyle : System.Web.UI.WebControls.Style
Public ReadOnly Property SubmitButtonStyle As Style
Valore della proprietà
Riferimento all'oggetto Style che contiene le proprietà che definiscono l'aspetto dei pulsanti Invia.
- Attributi
Esempio
Nell'esempio di codice seguente viene illustrato l'effetto dell'impostazione SubmitButtonStyle delle proprietà sui diversi tipi di pulsanti Invia nel PasswordRecovery controllo.
<%@ 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">
void DropDownList1_SelectedIndexChanged(object Sender, EventArgs e)
{
if (DropDownList1.SelectedValue == "Button")
{
PasswordRecovery1.SubmitButtonType = ButtonType.Button;
// <Snippet4>
PasswordRecovery1.SubmitButtonText = "Enter User Name";
// </Snippet4>
}
if (DropDownList1.SelectedValue == "Image")
{
PasswordRecovery1.SubmitButtonType = ButtonType.Image;
// <Snippet3>
PasswordRecovery1.SubmitButtonImageUrl = "userNameSubmit.png";
// </Snippet3>
PasswordRecovery1.SubmitButtonText = "Enter User Name Image";
}
if (DropDownList1.SelectedValue == "Link")
{
PasswordRecovery1.SubmitButtonType = ButtonType.Link;
PasswordRecovery1.SubmitButtonText = "Enter User Name";
}
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>ASP.NET Example</title>
</head>
<body>
<form id="Form1" runat="server">
<table border="1">
<tbody>
<tr>
<td>
<asp:passwordrecovery id="PasswordRecovery1" runat="server"
submitbuttonimageurl="userNameSubmit.png"
submitbuttontext="Enter User Name">
<submitbuttonstyle font-names="Comic Sans MS"
forecolor="White"
backcolor="#00C000">
</submitbuttonstyle>
</asp:passwordrecovery>
</td>
<td align="center">
Choose a button type:<br />
<asp:dropdownlist id="DropDownList1" runat="server"
onselectedindexchanged="DropDownList1_SelectedIndexChanged"
autopostback="true">
<asp:listitem value="Button">Button</asp:listitem>
<asp:listitem value="Image">Image</asp:listitem>
<asp:listitem value="Link">Link</asp:listitem>
</asp:dropdownlist>
</td>
</tr>
</tbody>
</table>
</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">
Sub DropDownList1_SelectedIndexChanged(ByVal sender As Object, ByVal e As EventArgs)
If DropDownList1.SelectedValue = "Button" Then
PasswordRecovery1.SubmitButtonType = ButtonType.Button
' <Snippet4>
PasswordRecovery1.SubmitButtonText = "Enter User Name"
' </Snippet4>
End If
If DropDownList1.SelectedValue = "Image" Then
PasswordRecovery1.SubmitButtonType = ButtonType.Image
' <Snippet3> -->
PasswordRecovery1.SubmitButtonImageUrl = "userNameSubmit.png"
' </Snippet3> -->
PasswordRecovery1.SubmitButtonText = "Enter User Name Image"
End If
If DropDownList1.SelectedValue = "Link" Then
PasswordRecovery1.SubmitButtonType = ButtonType.Link
PasswordRecovery1.SubmitButtonText = "Enter User Name"
End If
End Sub
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>ASP.NET Example</title>
</head>
<body>
<form id="Form1" runat="server">
<table border="1">
<tbody>
<tr>
<td>
<asp:passwordrecovery id="PasswordRecovery1" runat="server"
submitbuttonimageurl="userNameSubmit.png"
submitbuttontext="Enter User Name">
<submitbuttonstyle font-names="Comic Sans MS"
forecolor="White"
backcolor="#00C000">
</submitbuttonstyle>
</asp:passwordrecovery>
</td>
<td align="center">
Choose a button type:<br />
<asp:dropdownlist id="DropDownList1" runat="server"
onselectedindexchanged="DropDownList1_SelectedIndexChanged"
autopostback="true">
<asp:listitem value="Button">Button</asp:listitem>
<asp:listitem value="Image">Image</asp:listitem>
<asp:listitem value="Link">Link</asp:listitem>
</asp:dropdownlist>
</td>
</tr>
</tbody>
</table>
</form>
</body>
</html>
Commenti
La SubmitButtonStyle proprietà definisce l'aspetto dei pulsanti Invia nel PasswordRecovery controllo. Questa proprietà è di sola lettura; tuttavia, è possibile impostare le proprietà dell'oggetto Style restituito. È possibile impostare queste proprietà dichiarative nel formato Property-Subproperty
, dove Subproperty
rappresenta una proprietà della Style classe , ad esempio SubmitButtonStyle-ForeColor
. È anche possibile impostare le proprietà a livello di codice nel modulo Property.Subproperty
, ad esempio SubmitButtonStyle.ForeColor
.
Le impostazioni comuni includono colori di sfondo personalizzati, colore di testo e proprietà del tipo di carattere.
Le impostazioni di stile per la SubmitButtonStyle proprietà vengono unite alle impostazioni di stile per il PasswordRecovery controllo. Tutte le impostazioni effettuate nella proprietà eseguono l'override SubmitButtonStyle delle impostazioni corrispondenti nelle proprietà del PasswordRecovery controllo.
Le proprietà seguenti PasswordRecovery vengono sostituite dalle SubmitButtonStyle impostazioni:
Quando si usano modelli per definire l'aspetto della visualizzazione iniziale o Domanda del PasswordRecovery controllo, la SubmitButtonStyle proprietà non ha alcun effetto.