我真的需要帮助。我正在建立一个学生违规系统,我需要创建一个按钮,可以删除我在表格中以及链接到该表格的datagridview中的所有记录。因此,当我单击按钮时,它应该要求确认,然后当用户单击“是”时。该表将被截断,datagridview中的记录将刷新。我很难过,你能帮我吗?三江源。
private void button2_Click_1(object sender, EventArgs e)
{
string query = "Truncate table [transaction]";
using (SqlConnection xcon = new SqlConnection(@"Server=GLR\SQLEXPRESS;Database=SE_Project;Integrated Security=SSPI;"))
{
using (SqlCommand xcom = new SqlCommand(query, xcon))
{
SqlDataAdapter xdapter = new SqlDataAdapter(xcom);
try
{
xcon.Open();
if (this.dataGridViewAdminTransac.DataSource != null)
{
this.dataGridViewAdminTransac.DataSource = null;
MessageBox.Show("Are you sure?", "Confirmation", MessageBoxButtons.YesNo, MessageBoxIcon.Information);
}
else
{
this.dataGridViewAdminTransac.Rows.Clear();
MessageBox.Show("Are you sure?", "Confirmation", MessageBoxButtons.YesNo, MessageBoxIcon.Information);
}
AdminView temp = new AdminView();
temp.Show();
this.Hide();
}
catch (Exception)
{
throw;
}
finally
{
xcon.Close();
}
}
}
}
答案 0 :(得分:0)
不要;-)让框架为你工作。使用BindingList。您更新BindingList。该框架更新了DataGridView。
请参阅JürgenSteinblock关于机制的答案:Binding List<T> to DataGridView in WinForm