TableLayoutPanel.ColumnStyles Propriedade
Definição
Importante
Algumas informações dizem respeito a um produto pré-lançado que pode ser substancialmente modificado antes de ser lançado. A Microsoft não faz garantias, de forma expressa ou implícita, em relação à informação aqui apresentada.
Obtém uma coleção de estilos de colunas para o TableLayoutPanel.
public:
property System::Windows::Forms::TableLayoutColumnStyleCollection ^ ColumnStyles { System::Windows::Forms::TableLayoutColumnStyleCollection ^ get(); };
[System.ComponentModel.Browsable(false)]
public System.Windows.Forms.TableLayoutColumnStyleCollection ColumnStyles { get; }
[<System.ComponentModel.Browsable(false)>]
member this.ColumnStyles : System.Windows.Forms.TableLayoutColumnStyleCollection
Public ReadOnly Property ColumnStyles As TableLayoutColumnStyleCollection
Valor de Propriedade
A contendo TableLayoutColumnStyleCollection a ColumnStyle para cada coluna no TableLayoutPanel controlo.
- Atributos
Exemplos
O seguinte exemplo de código define as ColumnStyle propriedades de cada coluna quando a Button é clicado.
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
Observações
Use a ColumnStyles propriedade para aceder às propriedades de estilo de colunas específicas. Pode usar membros da ColumnStyle classe para definir as características das colunas individuais na tabela.
Quando o TableLayoutPanel controlo organiza as suas colunas, atribui prioridades a cada uma ColumnStyle na seguinte ordem:
As colunas com ColumnStyle conjunto de Absolute são consideradas primeiro, e as suas larguras fixas são atribuídas.
Colunas com ColumnStyle definido para AutoSize são dimensionadas de acordo com o seu conteúdo.
O espaço restante é dividido entre colunas com ColumnStyle o conjunto para Percent.