选择所有表单按钮

时间:2013-11-07 00:21:39

标签: vb.net datagridview

我想知道如何在表单上创建一个按钮来选择显示的datagridview的每一行?

我的代码中的datagridview名为dgv

2 个答案:

答案 0 :(得分:1)

有可能。在你的Button中,只需遍历datagridview。

        For each dr as Datagridviewrow in dgv.rows
        dr.selected = true
        Next

dr充当您的datagridview行。

答案 1 :(得分:1)

查看它所声明的DataGridView.SelectAll()方法的MSDN页面。

  

当DataGridView处于列选择模式并调用此方法时,每列的Selected属性设置为true,并且每行的Selected属性设置为false。

     

相反,当DataGridView处于行选择模式并调用此方法时,每行的Selected属性设置为true ,并且每列的Selected属性为设置为false。

所以这样的事情应该有用。

dgv.SelectionMode = DataGridViewSelectionMode.FullRowSelect 'Make sure this is enabled on your DataGridView

dgv.SelectAll() 'Put this in your click event