SizeType 枚举

定义

指定如何调整用户界面 (UI) 元素的行或列相对于其容器的大小。

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

字段

Absolute 1

行或列的大小应调整为确切的像素数。

AutoSize 0

行或列的大小应自动调整,与其他行或列共享所有空间。

Percent 2

行或列应按父容器的百分比调整大小。

示例

以下示例演示如何在 对象上ColumnStyle设置 TableLayoutStyle.SizeType 属性。 此代码示例是为 控件提供的更大示例的 TableLayoutPanel 一部分。

private void toggleColumnStylesBtn_Click(
    System.Object sender, 
    System.EventArgs e)
{
    TableLayoutColumnStyleCollection styles = 
        this.TableLayoutPanel1.ColumnStyles;

    foreach( ColumnStyle style in styles )
    {
        if( style.SizeType == SizeType.Absolute )
        {
            style.SizeType = SizeType.AutoSize;
        }
        else if( style.SizeType == SizeType.AutoSize )
        {
            style.SizeType = SizeType.Percent;

            // Set the column width to be a percentage
            // of the TableLayoutPanel control's width.
            style.Width = 33;
        }
        else
        {
            // Set the column width to 50 pixels.
            style.SizeType = SizeType.Absolute;
            style.Width = 50;
        }
    }
}
Private Sub toggleColumnStylesBtn_Click( _
ByVal sender As System.Object, _
ByVal e As System.EventArgs) _
Handles toggleColumnStylesBtn.Click

    Dim styles As TableLayoutColumnStyleCollection = _
    Me.TableLayoutPanel1.ColumnStyles

    For Each style As ColumnStyle In styles

        If style.SizeType = SizeType.Absolute Then

            style.SizeType = SizeType.AutoSize

        ElseIf style.SizeType = SizeType.AutoSize Then

            style.SizeType = SizeType.Percent

            ' Set the column width to be a percentage
            ' of the TableLayoutPanel control's width.
            style.Width = 33

        Else

            ' Set the column width to 50 pixels.
            style.SizeType = SizeType.Absolute
            style.Width = 50

        End If

    Next

End Sub

注解

SizeType枚举指定 UI 元素(通常是控件)的行或列应如何相对于其容器的大小进行大小调整。 和 ColumnStyle 类使用此RowStyle枚举来指示其首选大小调整属性。 类 TableLayoutPanel 反过来使用这些样式类。

当使用具有不同首选大小调整属性的行或列布局容器时,初始分配后剩余的任何空间都将分布在样式具有 TableLayoutStyle.SizeType AutoSize 或 Percent 属性值的行或列之间。

适用于

另请参阅