我创建了一个包含数据库的列表视图,但是每当我按“列出列表”时,它都会在lisview中重复。你知道如何解决吗? 我填写文本框以提交信息,但在列表视图中看不到。 有提交的代码;
fig.subplots_adjust(left=0.151, bottom=0.130, right=0.994, top=0.990)
有列出它的代码;
private void button1_Click(object sender, EventArgs e)
{
keko.Open();
cmd = new MySqlCommand("Insert into calisanlist(Adı,Soyadı,Yevmiye) values ('" + textBox1.Text + "','" + textBox2.Text + "','" + textBox3.Text + "')", keko);
cmd.ExecuteNonQuery();
keko.Close();
textBox1.Clear();
textBox2.Clear();
textBox3.Clear();