DataGridView.SelectedRows Özellik

Tanım

Kullanıcı tarafından seçilen satır koleksiyonunu alır.

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

Özellik Değeri

DataGridViewSelectedRowCollection Kullanıcı tarafından seçilen satırları içeren bir.

Öznitelikler

Örnekler

Aşağıdaki kod örneği, olayda UserDeletingRow özelliğinin SelectedRows nasıl kullanılacağını gösterir. Bu örnekte, ilk satır koleksiyonda SelectedRows yer alırsa silme işlemi iptal edilir. Bu örnek, olayda SelectionChanged kullanılabilen daha büyük bir örneğin bir parçasıdır.

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

Açıklamalar

Özelliğin SelectionMode seçili satırlarla doldurulması için SelectedRows veya olarak ayarlanması FullRowSelectRowHeaderSelect gerekir.

Bu özellik, başvurulduğu sırada seçimin salt okunur anlık görüntüsünü içerir. Bu koleksiyonun bir kopyasını tutarsanız, bu kopya kullanıcının seçimi değiştirdiği gerçek ve sonraki DataGridView durumdan farklı olabilir. Bu nedenle koleksiyonun bir kopyası üzerinde çalışmamalısınız.

Program aracılığıyla bir satır seçmek için, bu satırın Selected özelliğini olarak trueayarlayın.

Şunlara uygulanır

Ayrıca bkz.