TableLayoutPanel.RowStyles Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene una raccolta di stili di riga per TableLayoutPanel.
public:
property System::Windows::Forms::TableLayoutRowStyleCollection ^ RowStyles { System::Windows::Forms::TableLayoutRowStyleCollection ^ get(); };
[System.ComponentModel.Browsable(false)]
public System.Windows.Forms.TableLayoutRowStyleCollection RowStyles { get; }
[<System.ComponentModel.Browsable(false)>]
member this.RowStyles : System.Windows.Forms.TableLayoutRowStyleCollection
Public ReadOnly Property RowStyles As TableLayoutRowStyleCollection
Valore della proprietà
Oggetto TableLayoutRowStyleCollection contenente un oggetto RowStyle per ciascuna riga del controllo TableLayoutPanel.
- Attributi
Esempio
Nell'esempio di codice seguente vengono impostate le RowStyle proprietà di ogni riga quando viene fatto clic su un oggetto Button .
private void toggleRowStylesBtn_Click(
System.Object sender,
System.EventArgs e)
{
TableLayoutRowStyleCollection styles =
this.TableLayoutPanel1.RowStyles;
foreach( RowStyle style in styles )
{
if (style.SizeType==SizeType.Absolute)
{
style.SizeType = SizeType.AutoSize;
}
else if(style.SizeType==SizeType.AutoSize)
{
style.SizeType = SizeType.Percent;
// Set the row height to be a percentage
// of the TableLayoutPanel control's height.
style.Height = 33;
}
else
{
// Set the row height to 50 pixels.
style.SizeType = SizeType.Absolute;
style.Height = 50;
}
}
}
Private Sub toggleRowStylesBtn_Click( _
ByVal sender As System.Object, _
ByVal e As System.EventArgs) _
Handles toggleRowStylesBtn.Click
Dim styles As TableLayoutRowStyleCollection = _
Me.TableLayoutPanel1.RowStyles
For Each style As RowStyle In styles
If style.SizeType = SizeType.Absolute Then
style.SizeType = SizeType.AutoSize
ElseIf style.SizeType = SizeType.AutoSize Then
style.SizeType = SizeType.Percent
' Set the row height to be a percentage
' of the TableLayoutPanel control's height.
style.Height = 33
Else
' Set the row height to 50 pixels.
style.SizeType = SizeType.Absolute
style.Height = 50
End If
Next
End Sub
Commenti
Utilizzare la RowStyles proprietà per accedere alle proprietà di stile di righe specifiche. È possibile usare i membri della RowStyle classe per impostare le caratteristiche delle singole righe nella tabella.
Quando il controllo dispone le TableLayoutPanel righe, assegna priorità a ogni RowStyle oggetto nell'ordine seguente:
Le righe con RowStyle impostato su Absolute sono considerate prima e le loro altezze fisse vengono allocate.
Le righe con RowStyle impostato su AutoSize sono ridimensionate al loro contenuto.
Lo spazio rimanente è diviso tra le righe con RowStyle impostato su Percent.