私の問題の解決策を見つけました:
フォームの ctor 内で、データ グリッド ビューの SortCompare イベントを登録しました。
DataGridView1.SortCompare += new DataGridViewSortCompareEventHandler(MyCustomSortFunction);
Iv'e ビルドのカスタム関数は次のとおりです。
void MyCustomSortFunction(object sender, DataGridViewSortCompareEventArgs e)
{
try
{
// checks if the column's header that was pressed is the identity number -
// If so , sort as integer .
if (e.Column.Name == "colIdentity")
{
int a = Convert.ToInt32(e.CellValue1.ToString());
int b = Convert.ToInt32(e.CellValue2.ToString());
e.SortResult = a.CompareTo(b);
e.Handled = true;
}
// checks if the column's header that was pressed is the date -
// If so , sort as DateTime .
else if (e.Column.Name == "colHDate")
{
DateTime c = Convert.ToDateTime(e.CellValue1.ToString());
DateTime d = Convert.ToDateTime(e.CellValue2.ToString());
e.SortResult = c.CompareTo(d);
e.Handled = true;
}
}
catch
{ }
}
私の答えが誰かを助けることを願っています:-) Shuki。