Share via


DataGridViewSortCompareEventArgs.Column Vlastnost

Definice

Získá seřazený sloupec.

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

Hodnota vlastnosti

Seřadit DataGridViewColumn .

Příklady

Následující příklad kódu ukazuje použití Column v řazení s více sloupci. V tomto příkladu se sloupec ID používá k určení konečného pořadí, pokud jsou v seřazených sloupcích identické hodnoty, takže pokud jsou ve sloupci ID duplicitní hodnoty, nebude se provádět žádné další řazení. Tento příklad je součástí většího příkladu uvedeného v části Postupy: Přizpůsobení řazení v ovládacím prvku model Windows Forms DataGridView.

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

Poznámky

Tato vlastnost je užitečná při určování a řízení chování řazení v programových řazeních.

Platí pro

Viz také