DataGridView.SelectedRows Vlastnost

Definice

Získá kolekci řádků vybraných uživatelem.

public:
 property System::Windows::Forms::DataGridViewSelectedRowCollection ^ SelectedRows { System::Windows::Forms::DataGridViewSelectedRowCollection ^ get(); };
[System.ComponentModel.Browsable(false)]
public System.Windows.Forms.DataGridViewSelectedRowCollection SelectedRows { get; }
[<System.ComponentModel.Browsable(false)>]
member this.SelectedRows : System.Windows.Forms.DataGridViewSelectedRowCollection
Public ReadOnly Property SelectedRows As DataGridViewSelectedRowCollection

Hodnota vlastnosti

Obsahuje DataGridViewSelectedRowCollection řádky vybrané uživatelem.

Atributy

Příklady

Následující příklad kódu ukazuje, jak použít SelectedRows vlastnost v UserDeletingRow události. Pokud je v tomto příkladu první řádek obsažený v kolekci SelectedRows , odstranění se zruší. Tento příklad je součástí většího příkladu, který je k dispozici v SelectionChanged události.

private void DataGridView1_UserDeletingRow(object sender,
    DataGridViewRowCancelEventArgs e)
{
    DataGridViewRow startingBalanceRow = DataGridView1.Rows[0];

    // Check if the Starting Balance row is included in the selected rows
    if (DataGridView1.SelectedRows.Contains(startingBalanceRow))
    {
        // Do not allow the user to delete the Starting Balance row.
        MessageBox.Show("Cannot delete Starting Balance row!");

        // Cancel the deletion if the Starting Balance row is included.
        e.Cancel = true;
    }
}
Private Sub UserDeletingRow(ByVal sender As Object, _
    ByVal e As DataGridViewRowCancelEventArgs) _
    Handles DataGridView1.UserDeletingRow

    Dim startingBalanceRow As DataGridViewRow = DataGridView1.Rows(0)

    ' Check if the starting balance row is included in the selected rows
    If DataGridView1.SelectedRows.Contains(startingBalanceRow) Then
        ' Do not allow the user to delete the Starting Balance row.
        MessageBox.Show("Cannot delete Starting Balance row!")

        ' Cancel the deletion if the Starting Balance row is included.
        e.Cancel = True
    End If
End Sub

Poznámky

Vlastnost SelectionMode musí být nastavená na FullRowSelect hodnotu nebo RowHeaderSelect , SelectedRows aby se vlastnost naplnila vybranými řádky.

Tato vlastnost obsahuje snímek výběru jen pro čtení v okamžiku, kdy se na něj odkazuje. Pokud držíte kopii této kolekce, může se lišit od skutečného následného DataGridView stavu, ve kterém uživatel mohl výběr změnit. Proto byste neměli pracovat s kopií kolekce.

Pokud chcete vybrat řádek prostřednictvím kódu programu, nastavte jeho Selected vlastnost na true.

Platí pro

Viz také