1

必须有一种方法可以在不使用隧道和向导方法的情况下从 AxGridView 创建和插入记录。到目前为止,我在 Internet 上找到的唯一示例是使用向导,老实说,我认为这不是一种用户友好的方法。

有没有人尝试过直接从 AxGridView 插入记录?

4

1 回答 1

1

是的,可以通过 AxGridView 输入数据。只需为该控件启用编辑、删除即可。还有一件事要做新行 - 你必须制作额外的按钮 - 创建新行,并在后面编写代码:

protected void NewLine_Click(object sender, EventArgs e)
{
    int editIdx = AxGridView1.EditIndex;      

    try
    {
        // Save the last unsaved line if any
        if (AxGridView1.EditIndex != -1 && AxGridView1.Rows.Count > 0)
        {
            this.AxGridView1.UpdateRow(AxGridView1.EditIndex, true); 
        }


        DataSetViewRow dsvr = this.dsv.AddNew();        
    }
    catch (System.Exception ex)
    {
        AxExceptionCategory exceptionCategory;

        if (!AxControlExceptionHandler.TryHandleException(this, ex, out exceptionCategory))
        {
            // Throw the fatal exception
            throw;
        }
        if (exceptionCategory == AxExceptionCategory.NonFatal)
        {
            AxGridView1.EditIndex = editIdx;
        }
    }
}

private DataSetView dsv //get dataset view
    {
        get
        {
            DataSet dataSet = this.AxDataSource1.GetDataSet();
            return dataSet.DataSetViews[this.AxGridView1.DataMember];
        }
    } 
于 2011-01-19T09:12:39.680 回答