如何再次执行radiobutton1_checkedchanged事件呢?
操作了数据库,退出数据-添加/修改/删除界面,回到主界面
想让 private void radioButton1_CheckedChanged(object sender, EventArgs e)再次执行,已达到同步刷新数据的效果
这是退出数据维护界面
C# code
private void button4_Click(object sender, EventArgs e)
{
this.DialogResult = DialogResult.OK;
}
C# code
frmManual Manual = new frmManual();
if (Manual.ShowDialog() == DialogResult.OK)
{
binddata();
//radioButton1_CheckedChanged(); 这里该怎么写呢?
}
------解决方案--------------------radioButton1_CheckedChanged(radioButton1,null)
------解决方案--------------------radioButton1_CheckedChanged(null,null)
------解决方案--------------------再次调用radioButton1的事件响应函数
------解决方案--------------------radioButton1_CheckedChanged(radioButton1,null)