Leggere in inglese

Condividi tramite


TableLayoutPanelGrowStyle Enumerazione

Definizione

Specifica il modo in cui un oggetto TableLayoutPanel otterrà righe o colonne aggiuntive quando le celle esistenti risulteranno piene.

C#
public enum TableLayoutPanelGrowStyle
Ereditarietà
TableLayoutPanelGrowStyle

Campi

Nome Valore Descrizione
AddColumns 2

L'oggetto TableLayoutPanel otterrà altre colonne quando sarà pieno.

AddRows 1

L'oggetto TableLayoutPanel otterrà altre righe quando sarà pieno.

FixedSize 0

L'oggetto TableLayoutPanel non consente l'aggiunta di altre righe o colonne quando è pieno.

Esempio

Nell'esempio seguente viene illustrato come utilizzare TableLayoutPanelGrowStyle per impostare la TableLayoutPanel.GrowStyle proprietà . Questo esempio fa parte di un esempio più ampio fornito per il TableLayoutPanel controllo .

C#
private void growStyleNoneBtn_CheckedChanged(
    System.Object sender, 
    System.EventArgs e)
{
    this.tlpGrowStyle = TableLayoutPanelGrowStyle.FixedSize;
}

private void growStyleAddRowBtn_CheckedChanged(
    System.Object sender, 
    System.EventArgs e)
{
    this.tlpGrowStyle = TableLayoutPanelGrowStyle.AddRows;
}

private void growStyleAddColumnBtn_CheckedChanged(
    System.Object sender, 
    System.EventArgs e)
{
    this.tlpGrowStyle = TableLayoutPanelGrowStyle.AddColumns;
}

private void testGrowStyleBtn_Click(
    System.Object sender, 
    System.EventArgs e)
{
    this.TableLayoutPanel1.GrowStyle = this.tlpGrowStyle;

    try
    {
        this.TableLayoutPanel1.Controls.Add(new Button());
    }
    catch(ArgumentException ex)
    {
        Trace.WriteLine(ex.Message);
    }
}

Commenti

Se tutte le celle in TableLayoutPanel vengono riempite e la GrowStyle proprietà è impostata su FixedSize, un tentativo di aggiungere un altro controllo genererà un'eccezione.

Si applica a

Prodotto Versioni
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

Vedi anche