I have tables like that in Datagridview:
Name Money
-------------
Hi 100 //here Combobox with member {10,30,80,100} to choose
Ki 30 //he
You were almost done.
There are only two minor issues:
Full code below:
var table = new DataTable();
table.Columns.Add("Name", typeof(string));
table.Columns.Add("Money", typeof(string));
table.Rows.Add("Hi", "100");
table.Rows.Add("Ki", "30");
var column = new DataGridViewComboBoxColumn();
column.DataSource = new List() { "10", "30", "80", "100" };
dataGridView1.Columns.Add(column);
dataGridView1.DataSource = table;