如何在winform中子窗体提交数据后刷新父窗体中的DataGRIDVIEW数据?

如何在winform中子窗体提交数据后刷新父窗体中的DataGRIDVIEW数据?

//子窗体提交后
private void btnOK_Click(object sender, EventArgs e)
{
            this.DialogResult = DialogResult.OK;
            this.Close();
}


//判断子窗体
if(form.ShowDialog() == DialogResult.OK)
{
    刷新父窗体中的DataGRIDVIEW数据
}

你可能感兴趣的:(datagridview)