嗨,我是 wpf 数据网格的新手。我不知道如何在 wpf 数据网格的一行中插入特定单元格中的数据。
在普通的 Windows 窗体应用程序中,我可以通过将列表与 datagridview 绑定来实现这一点
dataGridView.Columns["UserName"].datapropertyName = "USERNAME";
dataGridView.Columns["Role"].datapropertyName = "Role";
BindingSource bs = new BindingSource();
bs.DataSource = UserList;
dataGridView.DataSource = bs;
for(int i=0; i<UserList.Count; i++)
{
dataGridView.Rows[i].Cells["Company"].Value = "Default";
}
现在我想在 wpf datagrid 中实现同样的效果,任何人都可以提供示例代码。对不起我的英语不好,提前感谢。