ContentDirection 枚举

定义

表示在容器控件中显示包含文本的控件的方向。

public enum class ContentDirection
public enum ContentDirection
type ContentDirection = 
Public Enum ContentDirection
继承
ContentDirection

字段

LeftToRight 1

从左向右。

NotSet 0

未设置。

RightToLeft 2

从右向左。

示例

以下示例演示如何使用 ContentDirection 枚举设置 Panel.Direction 属性。 ListBox使用枚举值填充ContentDirection控件。 面板中的标签和单选按钮的显示方向会根据用户从列表框中选择的值而更改。 由于本示例使用英语文本,因此当选定值时 RightToLeft ,文本在控件右侧 Panel 对齐,但保留英语文本的从左到右的顺序。 在实际应用程序中,如果未显示使用从左到右顺序的语言的文本,则不会将 Panel.Direction 属性 RightToLeft 设置为值。

<%@ Page Language="VB" %>

<!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>Panel.Direction Property Example</title>
<script runat="server">
          
        Sub ListBox1_SelectedIndexChanged(ByVal sender As Object, ByVal e As EventArgs)

            ' Determine which list item was clicked.
            ' Change the display direction of content in the panel.
            Select Case (ListBox1.SelectedIndex)
                Case 0
                    Panel1.Direction = ContentDirection.NotSet
                Case 1
                    Panel1.Direction = ContentDirection.LeftToRight
                Case 2
                    Panel1.Direction = ContentDirection.RightToLeft
                Case Else
                    Throw New Exception("You did not select a valid list item.")
            End Select

        End Sub
     
    </script>
</head>
<body>
    <form id="Form1" runat="server">
        
        <h3>Panel.Direction Property Example</h3>
        
        <h4>Select the content display direction for the 
        controls in the panel.</h4>
        
        <asp:ListBox ID="ListBox1"
            Rows="3"
            AutoPostBack="True"
            SelectionMode="Single"
            OnSelectedIndexChanged="ListBox1_SelectedIndexChanged"
            runat="server">
                <asp:ListItem>NotSet</asp:ListItem>
            <asp:ListItem>LeftToRight</asp:ListItem> 
            <asp:ListItem>RightToLeft</asp:ListItem>                               
        </asp:ListBox>
            
        <hr />              
        
        <asp:Panel ID="Panel1"
            Height="100px"
            Width="300px"
            BackColor="Aqua"           
            runat="server">            
            
            <asp:Label ID="Label1"
                Text = "Select a programming language"
                runat="server">              
            </asp:Label><br /><br />
            
            <asp:RadioButton id="Radio1"
                Text="C#" 
                Checked="False" 
                GroupName="RadioGroup1" 
                runat="server">
            </asp:RadioButton><br />

            <asp:RadioButton id="Radio2"
                Text="Visual Basic" 
                Checked="False" 
                GroupName="RadioGroup1" 
                runat="server">
            </asp:RadioButton><br />
                   
            <asp:RadioButton id="Radio3"
                Text="C++" 
                Checked="False" 
                GroupName="RadioGroup1" 
                runat="server">
            </asp:RadioButton><br />           
            
        </asp:Panel>           
         
    </form>
</body>
</html>

注解

ContentDirection枚举表示显示容器控件中包含文本的控件的方向。 控件等PanelWebPart控件具有使用ContentDirection枚举值的属性来指定显示包含文本的子控件的方向。

如果指定 LeftToRight 值,则包含文本的子控件从左到右显示文本,并在容器控件左侧对齐文本。 如果指定 RightToLeft 值,则包含从右到左的文本显示文本的子控件,并在容器控件右侧对齐文本。 RightToLeft使用该值显示从右到左写入的语言的文本,例如阿拉伯语和希伯来语。

适用于

另请参阅