POC on Grid View Add item to list,Delete row
POC on Grid View Add item to list,Delete row 1) create an Employee List 2)Add TextBox to enter the details 3)Add Employee details in the Grid View as a new row 4)Add CheckBox to select the list 5)Remove the Checked list. using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace GridView { public partial class Form1 : Form { EmployeeController ec = new EmployeeController(); DataGridViewCheckBoxColumn checkbox = new DataGridViewCheckBoxColumn(); public Form1() { ...