在我的C#WPF应用程序(.NET 4.0)中,我从包含DataGridComboBoxColumn的代码中动态填充了DataGrid:
public static DataGridComboBoxColumn getCboCol(string colName, Binding textBinding)
{
List<string> statusItemsList = new StatusList();
DataGridComboBoxColumn cboColumn = new DataGridComboBoxColumn();
cboColumn.Header = colName;
cboColumn.SelectedItemBinding = textBinding;
cboColumn.ItemsSource = statusItemsList;
return cboColumn;
}
使用BeginningEdit事件执行不同的检查。
如果支票恢复正常,我想直接展开组合框,否则编辑模式被取消:
void dataGrid_BeginningEdit(object sender, DataGridBeginningEditEventArgs e)
{
...
if(notOK)
e.Cancel;
else {
DataGridComboBoxColumn dgCboCol = (DataGridComboBoxColumn)e.Column;
// expand dgCboCol
}
...
}
问题:如何以编程方式扩展组合框? BeginningEdit事件是否适合这样做?
答案:
void dataGrid_PreparingCellForEdit(object sender, DataGridPreparingCellForEditEventArgs e)
{
if (e.EditingElement.GetType().Equals(typeof(ComboBox)))
{
ComboBox box = (ComboBox)e.EditingElement;
box.IsDropDownOpen = true;
}
}
答案 0 :(得分:2)
查看this
尝试将网格上的编辑模式设置为单击,然后使用CellClick事件获取comboBox并展开它。
dataGrid.BeginEdit(true);
ComboBox comboBox = (ComboBox)dataGrid.EditingControl;
comboBox.IsDropDownOpen = true;
答案 1 :(得分:1)
从DataGridBeginningEditEventArgs
,您可以访问要编辑的单元格的生成元素,如下所示:
var contentComboBox = e.Column.GetCellContent(e.Row) as ComboBox;
但是,我不确定这会得到你需要的实际ComboBox。 DataGrids可以为每个单元生成两个不同的元素,具体取决于它们是否处于编辑模式(只读和读写元素)。由于BeginningEdit
恰好在进入编辑模式之前发生,因此这将获得只读元素。
处理此问题的更好的事件可能是PreparingCellForEdit,在BeginEdit
实际调用数据项后会触发(换句话说,如果BeginningEdit
未被取消) 。在这种情况下,您可以直接通过EditingElement属性访问该元素。