Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 WPF 应用程序中,我有一个绑定到数据表的数据网格,我按升序对列进行排序。现在,当我在该特定列中编辑值时,将对值进行排序(已应用 AS 排序)。有什么办法可以防止在编辑时排序?
您的问题中没有足够的信息来给出更详细的答案,但这样的事情可能对您有用。
theColumnYouAreTargetting.SortMode = DataGridViewColumnSortMode.NotSortable;
您可以在编辑期间禁用排序,然后在完成后启用它。