在填充当前行之前阻止新行出现在DataGridView中?

时间:2012-04-03 06:43:28

标签: c# winforms datagridview datagridviewrow

我在C#3.5的WinForm应用程序中有一个DataGridView。

AllowUserToAddNewRow属性设置为true。当用户在DataGridView中键入任何文本时,另一个新行会自动添加到DataGridView中。我不希望在当前行上执行某些检查并添加所有必要信息之前添加此新行。

示例:我有一个空行的DataGridView: DataGridView with one blank row

当我开始输入时,会添加一个新行,这太快了:

我想要的是只有在用户输入数量后才添加新行:

5 个答案:

答案 0 :(得分:4)

设置AllowUserToAddNewRow = false 现在,最初在数据源中添加一个空行,例如。如果您正在将DataGridView绑定到名为DT的DataTable,那么就在

之前
dataGridView1.DataSource = DT;

执行类似

的操作
 DT.Rows.Add(DT.NewRow());

这是最初有一个空白行,以便输入第一个记录。 然后处理事件dataGridView1.CellEndEdit,在那个事件中写下这样的东西:

void dataGridView1_CellEndEdit(object sender, DataGridViewCellEventArgs e)
    {
        if (e.ColumnIndex == 1)//The index of your Quantity Column
        {
            int qty = (int)DT.Rows[e.RowIndex][e.ColumnIndex];
            if (qty > 0)//Your logic if required
            {
                DT.Rows.Add(DT.NewRow());                    
            }
        }
    }

答案 1 :(得分:3)

基本上它是一个简单的游戏,包含一些事件并启用/禁用AllowUserToAddRow属性:

public Form1()
        {
            InitializeComponent();
            //creating a test DataTable and adding an empty row
            DataTable dt = new DataTable();
            dt.Columns.Add("Column1");
            dt.Columns.Add("Column2");
            dt.Rows.Add(dt.NewRow());

            //binding to the gridview
            dataGridView1.DataSource = dt;

            //Set  the property AllowUserToAddRows to false will prevent a new empty row
            dataGridView1.AllowUserToAddRows = false;
        }

现在事件...... 当单元格识别编辑时,它将触发一个名为CellBeginEdit的事件。当它处于编辑模式时,将AllowUserToAddRows设置为false

private void dataGridView1_CellBeginEdit(object sender, DataGridViewCellCancelEventArgs e)
{
    dataGridView1.AllowUserToAddRows = false;
}

当单元格识别编辑结束时,它将触发一个名为CellEndEdit的事件。当它结束编辑模式时检查您的条件。根据结果​​集,AllowUserToAddRows为true,保持为false。

private void dataGridView1_CellEndEdit(object sender, DataGridViewCellEventArgs e)
{
    //instead of MessageBox there could be as well your check conditions
    if (MessageBox.Show("Cell edit finished, add a new row?", "Add new row?", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
        dataGridView1.AllowUserToAddRows = true;
    else dataGridView1.AllowUserToAddRows = false;
}

答案 2 :(得分:0)

我认为在CellClick事件中,您可以检查您所在的列,然后添加一个新行,例如:DataGridView1.Rows.Add()

答案 3 :(得分:0)

这是如何实现的。

a)您可以使用

检查RowLeave事件中当前行的内容
String.IsNullOrWhiteSpace(GridPGLog.Rows[e.RowIndex].Cells[0].value.toString())
using (or) Cells[0] || cells[1] || cell[2] || ..

如果发现任何错误,请将焦点设置到错误单元格并强制用户输入数据。

DataGridViewRow rowToSelect = this.dgvJobList.CurrentRow;
rowToSelect.Selected = true;
rowToSelect.Cells[0].Selected = true;
this.dgvJobList.CurrentCell = rowToSelect.Cells[0];

b)或者您可以使用foreach循环放置“保存”按钮并检查所有新添加的行

答案 4 :(得分:0)

我知道这是旧的。 最简单的方法是,取消选中"启用添加"从设计视图

enter image description here