Login.TextLayout 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
指定每個標籤的位置 (相對於其所關聯之 Login 控制項的文字方塊)。
public:
virtual property System::Web::UI::WebControls::LoginTextLayout TextLayout { System::Web::UI::WebControls::LoginTextLayout get(); void set(System::Web::UI::WebControls::LoginTextLayout value); };
public virtual System.Web.UI.WebControls.LoginTextLayout TextLayout { get; set; }
member this.TextLayout : System.Web.UI.WebControls.LoginTextLayout with get, set
Public Overridable Property TextLayout As LoginTextLayout
屬性值
其中一個 LoginTextLayout 列舉值。 預設為 TextOnLeft。
例外狀況
選取的值不是其中一個 LoginTextLayout 列舉值。
範例
下列程式代碼範例示範如何使用 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 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>TextLayout Example</title>
</head>
<body>
<form id="Form1" runat="server">
<h3>TextLayout Example</h3>
<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>
</td>
</tr>
</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 ChangeTextLayout_Click(sender as Object, 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>TextLayout Example</title>
</head>
<body>
<form id="Form1" runat="server">
<h3>TextLayout Example</h3>
<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>
</td>
</tr>
</table>
</form>
</body>
</html>
備註
您可以使用 TextLayout 屬性來指定標籤相對於控制項相關文字框 Login 的位置。 這個屬性是使用其中 LoginTextLayout 一個列舉值來設定。 下表列出可能的值。
LoginTextLayout 值 | 描述 |
---|---|
TextOnLeft | 將標籤放在關聯之文字輸入欄位的左邊。 |
TextOnTop | 將標籤放在關聯之文字輸入欄位的上方。 |