i have a listbox and a datagridview. When I double click an item of the listbox, then I want to copy it to specific column cells of the datagridview. For example if i select from listbox the item "cd", then the cell (of specific column) to be update with the cd value. (listbox is not connect to the database)If anyone knows to help me please..I get the selected item from listbox... private void listBox1_DoubleClick(object sender, EventArgs e) { string item; item = listBox1.SelectedItem.ToString(); MessageBox.Show("Selected Index = " + item); }Then i am thinking to get the datagridview cell that my mouse is an copy it there..What do you think.Thanks! 解决方案 这篇关于ListBox项目复制到datagridview的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!