Suggérer une traduction
 
Suggestions d'autres utilisateurs :

progress indicator
Aucune autre suggestion.
Cliquez pour évaluer et commenter
MSDN
MSDN Library
Développement .NET
.NET Framework 4
Espaces de noms System.Web
System.Web.UI.WebControls
 LoginTextLayout, énumération
Réduire tout/Développer tout Réduire tout
Affichage du contenu :  côte à côteAffichage du contenu : côte à côte
.NET Framework Class Library
LoginTextLayout Enumeration

Specifies the position of labels relative to their associated text boxes for the Login control.

Namespace:  System.Web.UI.WebControls
Assembly:  System.Web (in System.Web.dll)
Visual Basic
Public Enumeration LoginTextLayout
C#
public enum LoginTextLayout
Visual C++
public enum class LoginTextLayout
F#
type LoginTextLayout
Member nameDescription
TextOnLeftPlaces labels to the left of the associated text entry fields.
TextOnTopPlaces labels above the associated text entry fields.

The following code example demonstrates using the LoginTextLayout enumeration to set the TextLayout property on the Login control.

Visual Basic
<%@ 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 changeOrientation_Click(ByVal sender As Object, ByVal e As EventArgs)
    If Login1.Orientation = Orientation.Vertical Then
        Login1.Orientation = Orientation.Horizontal
    Else
        Login1.Orientation = Orientation.Vertical
    End If
End Sub

Sub changeTextLayout_Click(ByVal sender As Object, ByVal e As EventArgs)
    If Login1.TextLayout = LoginTextLayout.TextOnLeft Then
        Login1.TextLayout = LoginTextLayout.TextOnTop
    Else
        Login1.TextLayout = LoginTextLayout.TextOnLeft
    End If
End Sub

</script>
<html  >
    <head runat="server">
    <title>ASP.NET Example</title>
</head>
<body>
        <form id="form1" runat="server">
            <table style="text-align:center; border-width:1">
                <tr>
                    <td align="center">
                        <asp:Login id="Login1" runat="server"
                            Orientation="Vertical" TextLayout="TextOnLeft">
                        </asp:Login>
                    </td>
                </tr>
                <tr>
                    <td align="center">
                        <asp:Button id="changeTextLayout" runat="Server" Text="Change Text Layout" onClick="changeTextLayout_Click" ></asp:Button>&nbsp;
                        <asp:Button id="changeOrientation" runat="server" Text="Change Orientation" onClick="changeOrientation_Click"></asp:Button>
                    </td>
                </tr>
            </table>
        </form>
    </body>
</html>
C#
<%@ 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 changeOrientation_Click(object sender, EventArgs e)
{
    if (Login1.Orientation == Orientation.Vertical)
        Login1.Orientation = Orientation.Horizontal;
    else
        Login1.Orientation = Orientation.Vertical;
}

void changeTextLayout_Click(object sender, EventArgs e)
{
    if (Login1.TextLayout == LoginTextLayout.TextOnLeft)
        Login1.TextLayout = LoginTextLayout.TextOnTop;
    else
        Login1.TextLayout = LoginTextLayout.TextOnLeft;
}

</script>
<html  >
    <head runat="server">
    <title>ASP.NET Example</title>
</head>
<body>
        <form id="form1" runat="server">
            <table style="text-align:center; border:1">
                <tr>
                    <td align="center">
                        <asp:Login id="Login1" runat="server"
                            Orientation="Vertical" TextLayout="TextOnLeft">
                        </asp:Login>
                    </td>
                </tr>
                <tr>
                    <td align="center">
                        <asp:Button id="changeTextLayout" runat="Server" Text="Change Text Layout" onClick="changeTextLayout_Click" ></asp:Button>&nbsp;
                        <asp:Button id="changeOrientation" runat="server" Text="Change Orientation" onClick="changeOrientation_Click"></asp:Button>
                    </td>
                </tr>
            </table>
        </form>
    </body>
</html>

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role not supported), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Bibliothèque de classes .NET Framework
LoginTextLayout, énumération

Spécifie la position des étiquettes par rapport à leurs zones de texte associées pour le contrôle Login.

Espace de noms :  System.Web.UI.WebControls
Assembly :  System.Web (dans System.Web.dll)
Visual Basic
Public Enumeration LoginTextLayout
C#
public enum LoginTextLayout
VisualC++
public enum class LoginTextLayout
F#
type LoginTextLayout
Nom de membreDescription
TextOnLeftPlace les étiquettes à gauche des champs de saisie de texte associés.
TextOnTopPlace les étiquettes au-dessus des champs de saisie de texte associés.

L'exemple de code suivant illustre l'utilisation de l'énumération LoginTextLayout pour définir la propriété TextLayout du Login.

Visual Basic
<%@ 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 changeOrientation_Click(ByVal sender As Object, ByVal e As EventArgs)
    If Login1.Orientation = Orientation.Vertical Then
        Login1.Orientation = Orientation.Horizontal
    Else
        Login1.Orientation = Orientation.Vertical
    End If
End Sub

Sub changeTextLayout_Click(ByVal sender As Object, ByVal e As EventArgs)
    If Login1.TextLayout = LoginTextLayout.TextOnLeft Then
        Login1.TextLayout = LoginTextLayout.TextOnTop
    Else
        Login1.TextLayout = LoginTextLayout.TextOnLeft
    End If
End Sub

</script>
<html  >
    <head runat="server">
    <title>ASP.NET Example</title>
</head>
<body>
        <form id="form1" runat="server">
            <table style="text-align:center; border-width:1">
                <tr>
                    <td align="center">
                        <asp:Login id="Login1" runat="server"
                            Orientation="Vertical" TextLayout="TextOnLeft">
                        </asp:Login>
                    </td>
                </tr>
                <tr>
                    <td align="center">
                        <asp:Button id="changeTextLayout" runat="Server" Text="Change Text Layout" onClick="changeTextLayout_Click" ></asp:Button>&nbsp;
                        <asp:Button id="changeOrientation" runat="server" Text="Change Orientation" onClick="changeOrientation_Click"></asp:Button>
                    </td>
                </tr>
            </table>
        </form>
    </body>
</html>
C#
<%@ 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 changeOrientation_Click(object sender, EventArgs e)
{
    if (Login1.Orientation == Orientation.Vertical)
        Login1.Orientation = Orientation.Horizontal;
    else
        Login1.Orientation = Orientation.Vertical;
}

void changeTextLayout_Click(object sender, EventArgs e)
{
    if (Login1.TextLayout == LoginTextLayout.TextOnLeft)
        Login1.TextLayout = LoginTextLayout.TextOnTop;
    else
        Login1.TextLayout = LoginTextLayout.TextOnLeft;
}

</script>
<html  >
    <head runat="server">
    <title>ASP.NET Example</title>
</head>
<body>
        <form id="form1" runat="server">
            <table style="text-align:center; border:1">
                <tr>
                    <td align="center">
                        <asp:Login id="Login1" runat="server"
                            Orientation="Vertical" TextLayout="TextOnLeft">
                        </asp:Login>
                    </td>
                </tr>
                <tr>
                    <td align="center">
                        <asp:Button id="changeTextLayout" runat="Server" Text="Change Text Layout" onClick="changeTextLayout_Click" ></asp:Button>&nbsp;
                        <asp:Button id="changeOrientation" runat="server" Text="Change Orientation" onClick="changeOrientation_Click"></asp:Button>
                    </td>
                </tr>
            </table>
        </form>
    </body>
</html>

.NET Framework

Pris en charge dans : 4, 3.5, 3.0, 2.0

Windows 7, Windows Vista SP1 ou ultérieur, Windows XP SP3, Windows XP SP2 Édition x64, Windows Server 2008 (installation minimale non prise en charge), Windows Server 2008 R2 (installation minimale prise en charge avec SP1 ou version ultérieure), Windows Server 2003 SP2

Le .NET Framework ne prend pas en charge toutes les versions de chaque plateforme. Pour obtenir la liste des versions prises en charge, consultez Configuration requise du .NET Framework.
Contenu de la communauté   Qu'est-ce que le Contenu de la communauté ?
Ajouter du contenu RSS  Annotations
Processing
© 2012 Microsoft. Tous droits réservés. Conditions d'utilisation | Marques | Confidentialité
Page view tracker