RowDefinitionCollection.Insert(Int32, RowDefinition) Método

Definição

Insere um RowDefinition na posição de índice especificada dentro de um 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)

Parâmetros

index
Int32

A posição dentro da coleção em que o item é inserido.

value
RowDefinition

O RowDefinition a ser inserido.

Implementações

Exceções

index não é um índice válido no IList.

Exemplos

O exemplo a seguir demonstra como usar o Insert método para inserir uma RowDefinition posição específica index em um RowDefinitionCollection.

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

Para exibir o exemplo completo, consulte Como manipular colunas e linhas usando ColumnDefinitionsCollections e RowDefinitionsCollections.

Comentários

RowDefinitionCollection usa um sistema de indexação baseado em zero.

Aplica-se a

Confira também