From 726a238d0a782b3dcfe83e578fa4f3312253cae6 Mon Sep 17 00:00:00 2001 From: Blauschleim Date: Mon, 9 May 2022 14:15:28 +0200 Subject: [PATCH] abused searchBtn_click to add rows into the datagrid --- Form1.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Form1.cs b/Form1.cs index d182f35..80afef3 100644 --- a/Form1.cs +++ b/Form1.cs @@ -22,7 +22,9 @@ namespace it_projekt private void searchBtn_Click(object sender, EventArgs e) { - + + this.dataGrid.Rows.Add("test", "test", "test", "test", true); + // this.dataGrid.Rows.Contains(); } private void loginBtn_Click(object sender, EventArgs e)