DataGridView中指定Column做資料排序
from https://dotblogs.com.tw/chou/2009/04/02/7822
private void button1_Click(object sender, EventArgs e)
{
// 根據 資料行1 (Name) 做 大到小 排序
dataGridView1.Sort(dataGridView1.Columns[1], System.ComponentModel.ListSortDirection.Descending);
}
private void button2_Click(object sender, EventArgs e)
{
// 根據 資料行1 (Name) 做 小到大 排序
dataGridView1.Sort(dataGridView1.Columns[1], System.ComponentModel.ListSortDirection.Ascending);
}
留言
張貼留言