DataGridView set column cell Combobox

后端 未结 8 2090
滥情空心
滥情空心 2020-12-05 19:36

I have tables like that in Datagridview:

 Name   Money
 -------------
 Hi      100   //here Combobox with member {10,30,80,100} to choose
 Ki      30    //he         


        
8条回答
  •  一向
    一向 (楼主)
    2020-12-05 19:51

    You can replace with

    dt.Columns.Add("Money", typeof(List));
    

提交回复
热议问题