DataGridViewSortCompareEventArgs.Column Właściwość

Definicja

Pobiera posortowaną kolumnę.

public:
 property System::Windows::Forms::DataGridViewColumn ^ Column { System::Windows::Forms::DataGridViewColumn ^ get(); };
public System.Windows.Forms.DataGridViewColumn Column { get; }
member this.Column : System.Windows.Forms.DataGridViewColumn
Public ReadOnly Property Column As DataGridViewColumn

Wartość właściwości

DataGridViewColumn

Element do sortowania DataGridViewColumn .

Przykłady

W poniższym przykładzie kodu pokazano użycie funkcji Column w sortowaniu wielu kolumn. W tym przykładzie kolumna ID służy do określania kolejności ostatecznej, jeśli w posortowanej kolumnie istnieją identyczne wartości, więc w przypadku kolumny ID nie zostaną wykonane żadne dodatkowe sortowanie. Ten przykład jest częścią większego przykładu przedstawionego w temacie Jak dostosować sortowanie w kontrolce DataGridView Windows Forms.

private void dataGridView1_SortCompare(object sender,
    DataGridViewSortCompareEventArgs e)
{
    // Try to sort based on the cells in the current column.
    e.SortResult = System.String.Compare(
        e.CellValue1.ToString(), e.CellValue2.ToString());

    // If the cells are equal, sort based on the ID column.
    if (e.SortResult == 0 && e.Column.Name != "ID")
    {
        e.SortResult = System.String.Compare(
            dataGridView1.Rows[e.RowIndex1].Cells["ID"].Value.ToString(),
            dataGridView1.Rows[e.RowIndex2].Cells["ID"].Value.ToString());
    }
    e.Handled = true;
}
Private Sub DataGridView1_SortCompare( _
    ByVal sender As Object, ByVal e As DataGridViewSortCompareEventArgs) _
    Handles DataGridView1.SortCompare

    ' Try to sort based on the contents of the cell in the current column.
    e.SortResult = System.String.Compare(e.CellValue1.ToString(), _
        e.CellValue2.ToString())

    ' If the cells are equal, sort based on the ID column.
    If (e.SortResult = 0) AndAlso Not (e.Column.Name = "ID") Then
        e.SortResult = System.String.Compare( _
            DataGridView1.Rows(e.RowIndex1).Cells("ID").Value.ToString(), _
            DataGridView1.Rows(e.RowIndex2).Cells("ID").Value.ToString())
    End If

    e.Handled = True

End Sub

Uwagi

Ta właściwość jest przydatna podczas określania i kontrolowania zachowania sortowania w sortowaniu programowym.

Dotyczy

Zobacz też