RowDefinitionCollection.Insert(Int32, RowDefinition) Metodo

Definizione

Inserisce un oggetto RowDefinition nella posizione di indice specificata all’interno di RowDefinitionCollection.

public:
 virtual void Insert(int index, System::Windows::Controls::RowDefinition ^ value);
public void Insert (int index, System.Windows.Controls.RowDefinition value);
abstract member Insert : int * System.Windows.Controls.RowDefinition -> unit
override this.Insert : int * System.Windows.Controls.RowDefinition -> unit
Public Sub Insert (index As Integer, value As RowDefinition)

Parametri

index
Int32

La posizione all'interno dell'insieme in cui viene inserito l'elemento.

value
RowDefinition

Oggetto RowDefinition da inserire.

Implementazioni

Eccezioni

index non è un indice valido nell'interfaccia IList.

Esempio

Nell'esempio seguente viene illustrato come usare il Insert metodo per inserire un oggetto RowDefinition in una posizione specifica index all'interno di un RowDefinitionCollectionoggetto .

private void insertRowAt(object sender, RoutedEventArgs e)
{
    rowDef1 = new RowDefinition();
    grid1.RowDefinitions.Insert(grid1.RowDefinitions.Count, rowDef1);
    tp1.Text = "RowDefinition added at index position " + grid1.RowDefinitions.IndexOf(rowDef1).ToString();
}
Private Sub insertRowAt(ByVal sender As Object, ByVal e As RoutedEventArgs)
    Dim rowDef1 As New RowDefinition
    grid1.RowDefinitions.Insert(grid1.RowDefinitions.Count, rowDef1)
    tp1.Text = "RowDefinition added at index position " + grid1.RowDefinitions.IndexOf(rowDef1).ToString()
End Sub

Per visualizzare l'esempio completo, vedere Procedura: Modificare colonne e righe usando ColumnDefinitionsCollections e RowDefinitionsCollections.

Commenti

RowDefinitionCollection usa un sistema di indicizzazione in base zero.

Si applica a

Vedi anche