我有一个C#(。Net 3.5)应用程序,我试图在我的数据绑定数据gridview中强制/显示NewRow符号(* - asterick / star)。我的数据网格视图绑定到通用列表。
class myRecordRow:
class myRecordRow {
private string _recordName;
private string _recordLocation;
public string RecordName {
get { return _recordName; }
set { _recordName = value; }
}
public string RecordLocation {
get { return _recordLocation; }
set { _recordLocation = value; }
}
public myRecordRow() {
_recordName = string.Empty;
_recordLocation = string.Emtpy;
}
public myRecordRow(string name, string location) {
_recordName = name;
_recordLocation = location;
}
}
类myRecord:
class myRecord {
private List<myRecordRow> _recordRows;
public List<myRecordRow> RecordRows {
get { return _recordRows; }
set { _recordRows = value; }
}
}
现在,在我的Winform form1_Load()事件中,我有以下内容:
private form1_Load() {
BindingSource bindingSource1 = new BindingSource();
myRecord rec = new myRecord();
myRecordRow newRow = new myRecordRow("name1", "location1");
myRecordRow newRow2 = new myRecordRow("name2", "location2");
rec.RecordRows.Add(newRow); rec.RecordRows.Add(newRow2);
dataGridView1.AutoGenerateColumns = false;
dataGridView1.AllowDrop = true;
dataGridView1.AllowUserToAddRows = true;
int colIndex = dataGridView1.Columns.Add("RecordName", "myRecord Name");
dataGridView1.Columns[colIndex].DataPropertyName = "RecordName";
colIndex = dataGridView1.Columns.Add("RecordLocation", "myRecord Location");
dataGridView1.Columns[colIndex].DataPropertyName = "RecordLocation";
bindingSource1 = new BindingSource();
bindingSource1.DataSource = rec.RecordRows;
dataGridView1.DataSource = bindingSource1;
}
注意:我有拖拽和放大器删除将正确添加数据到基础数据源(通用列表)的事件。
当我的表单第一次加载时,我的数据网格视图中填充了2个条目,但没有显示NewRow()(带有星号/星号的那个) - 如何让我的datagridview显示NewRow? ?此外,一旦用户开始添加数据(通过拖放),我也希望显示NewRow。
显示NewRow的主要原因是允许另一种(替代)添加数据的方法 - 通过在单元格/列中键入必要的数据。我的数据绑定使用拖放操作,但似乎无法显示NewRow,因此用户可以开始编辑单元格。我想不使用按钮将新行“插入”我的基础数据源。
感谢任何帮助/帮助。我已经浏览了这个论坛,找到了“隐藏”NewRow的答案 - 我的反面是相反的,尤其是数据有限的数据视图。谢谢。
答案 0 :(得分:3)
好的 - 我的案例中的问题是我的BindingSource。 AllowNew属性设置为false - 我将其设置为true并完全得到我需要的内容。有时最困难的问题会导致简单的答案。
bindingSource1 = new BindingSource();
bindingSource1.AllowNew = true;