LoginTextLayout 열거형
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
Login 컨트롤에 대해 연결된 텍스트 상자와 상대적인 레이블 위치를 지정합니다.
public enum class LoginTextLayout
public enum LoginTextLayout
type LoginTextLayout =
Public Enum LoginTextLayout
- 상속
필드
TextOnLeft | 0 | 연결된 텍스트 입력 필드의 왼쪽에 레이블을 배치합니다. |
TextOnTop | 1 | 연결된 텍스트 입력 필드 위에 레이블을 배치합니다. |
예제
다음 코드 예제를 사용 하 여 하는 방법을 보여 줍니다는 LoginTextLayout 설정 하는 열거형을 TextLayout 속성에는 Login 컨트롤입니다.
<%@ 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 xmlns="http://www.w3.org/1999/xhtml" >
<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>
<asp:Button id="changeOrientation" runat="server" Text="Change Orientation" onClick="changeOrientation_Click"></asp:Button>
</td>
</tr>
</table>
</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 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 xmlns="http://www.w3.org/1999/xhtml" >
<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>
<asp:Button id="changeOrientation" runat="server" Text="Change Orientation" onClick="changeOrientation_Click"></asp:Button>
</td>
</tr>
</table>
</form>
</body>
</html>