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.
[x] ID Name [x] 1 abc [x] 2 def [x] 3 xyz selectAll ClearAll
上面显示了一个列表视图,其中包含复选框列以及 ID 和名称列。[x] 是复选框..我在 WPF 中这样做。
我想当我点击全选按钮时,复选框的每一行都被选中,当全部清除时,它会将所有复选框清除为假..请有任何完整的教程或示例解决请分享..
在按钮的按钮处理程序中,您需要以下代码:
foreach (var item in dataSource) { item.Checked = true; // or false for ClearAll }
您更改源数据中的值,UI 将更新以反映该更改。