当前位置:编程学习 > C#/ASP.NET >>

winform中datagridview选定单元格问题

如题,怎么最终获得的只有最后一个获得焦点的单元格呢。我已经设置了SelectionMode = DataGridViewSelectionMode.CellSelect;MultiSelect = true;在CellContentClick事件中设定selected属性,结果成单选模式了。想了半天,不知所终 --------------------编程问答-------------------- 在线等待各位朋友的指点。。。。。 --------------------编程问答-------------------- 你确定按住了Shift键选中了多列么? --------------------编程问答--------------------             List<string> lst = new List<string>();
            for (int i = 0; i < dataGridView1.SelectedCells.Count; i++) 
            {
                lst.Add(dataGridView1.SelectedCells[i].Value.ToString());
            }

测试了没问题  
补充:.NET技术 ,  C#
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,