C# Datagridview does not sort Checkbox column

前端 未结 2 1896
花落未央
花落未央 2021-02-20 01:01

When I bind a Linq-to-sql query to a datagridview (using a BindingSource in between), the columns are sortable by default. However, this does not seem to be the case for boolean

2条回答
  •  独厮守ぢ
    2021-02-20 01:42

    will this help?

    dgv1.Columns["Colname"].SortMode = DataGridViewColumnSortMode.Automatic;
    

提交回复
热议问题