2

我有一个 C# (.Net 3.5) 应用程序,我试图在我的数据绑定数据网格视图中强制/显示 NewRow 符号 (* - asterick/star)。我的数据网格视图绑定到一个通用列表。

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;
    }
}

我的记录类:

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 的答案——我的正好相反,尤其是数据有界的 datagridview。谢谢你。

  • 洛伦兹
4

1 回答 1

3

好的 - 我的问题是我的 BindingSource。AllowNew 属性设置为 false - 我将其设置为 true 并得到了我所需要的。有时最难的问题会得到简单的答案。

bindingSource1 = new BindingSource();
bindingSource1.AllowNew = true;
于 2012-05-01T18:58:15.673 回答