2010-05-14 137 views

回答

0

首先將Gridview的Allowsorting屬性設置爲true。

然後將佔位欄的SortExpression屬性設置爲對應數據源的列。

例如:

yourGridView.Columns[2].SortExpression = "YourDataSourceColumnName" 
相關問題