作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 WPF 工具包数据网格。我已将其设置为 SelectionUnit="单元格"和 SelectionMode="扩展" .
永远不会引发 SelectionChanged 事件!
当 SelectionUnit 设置为 FullRow 时,它工作正常。
我错过了什么吗?
顺便说一句,我需要它的原因是因为我试图创建一个附加属性来帮助我将 SelectedCells 绑定(bind)到我的 ViewModel。
最佳答案
使用DataGrid.SelectedCellsChanged
应该provide you用你需要的东西。
private void DG1_SelectedCellsChanged(object sender, SelectedCellsChangedEventArgs e)
{
//Get the newly selected cells
IList<DataGridCellInfo> selectedcells = e.AddedCells;
//Get the value of each newly selected cell
foreach (DataGridCellInfo di in selectedcells)
{
//Cast the DataGridCellInfo.Item to the source object type
//In this case the ItemsSource is a DataTable and individual items are DataRows
DataRowView dvr = (DataRowView)di.Item;
//Clear values for all newly selected cells
AdventureWorksLT2008DataSet.CustomerRow cr = (AdventureWorksLT2008DataSet.CustomerRow)dvr.Row;
cr.BeginEdit();
cr.SetField(di.Column.DisplayIndex, "");
cr.EndEdit();
}
}
关于WPF 数据网格 : SelectionChanged event isn't raised when SelectionUnit ="Cell",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4714325/
.Net 4 WPF DataGrid C# MMVM 当 DataGrid SelectionUnit 为整行时,wpf 数据绑定(bind)和 collectionview 负责让我知道 View
我正在使用 WPF 工具包数据网格。我已将其设置为 SelectionUnit="单元格"和 SelectionMode="扩展" . 永远不会引发 SelectionChanged 事件! 当 Se
请帮助我,我正在使用“WPF Application Framework”和 EF Code First 编写应用程序。我正在尝试将选定行设置为绑定(bind)到 DataGrids Selected
我是一名优秀的程序员,十分优秀!